@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<beansProjectDescription> |
||||
<version>1</version> |
||||
<pluginVersion><![CDATA[2.9.1.201203220057-RELEASE]]></pluginVersion> |
||||
<configSuffixes> |
||||
<configSuffix><![CDATA[xml]]></configSuffix> |
||||
</configSuffixes> |
||||
<enableImports><![CDATA[false]]></enableImports> |
||||
<configs> |
||||
<config>spring-servlet.xml</config> |
||||
</configs> |
||||
<configSets> |
||||
</configSets> |
||||
</beansProjectDescription> |
@ -0,0 +1,12 @@
|
||||
local-values.conf |
||||
target |
||||
*~ |
||||
bin |
||||
*.idea |
||||
*.iml |
||||
*.eml |
||||
.project |
||||
.settings |
||||
.classpath |
||||
/target |
||||
.springBeans |
@ -0,0 +1,65 @@
|
||||
<?xml version="1.0"?> |
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>org.mitre</groupId> |
||||
<artifactId>openid-connect-parent</artifactId> |
||||
<version>1.1.0-SNAPSHOT</version> |
||||
</parent> |
||||
<artifactId>openid-connect-server-webapp</artifactId> |
||||
<packaging>war</packaging> |
||||
<name>OpenID Connect Server Webapp</name> |
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<source>${java-version}</source> |
||||
<target>${java-version}</target> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-war-plugin</artifactId> |
||||
<configuration> |
||||
<warName>openid-connect-server-webapp</warName> |
||||
<nonFilteredFileExtensions> |
||||
<nonFilteredFileExtension>gif</nonFilteredFileExtension> |
||||
<nonFilteredFileExtension>ico</nonFilteredFileExtension> |
||||
<nonFilteredFileExtension>jpg</nonFilteredFileExtension> |
||||
<nonFilteredFileExtension>png</nonFilteredFileExtension> |
||||
<nonFilteredFileExtension>pdf</nonFilteredFileExtension> |
||||
</nonFilteredFileExtensions> |
||||
<webResources> |
||||
<resource> |
||||
<directory>src/main/webapp</directory> |
||||
<filtering>true</filtering> |
||||
</resource> |
||||
</webResources> |
||||
</configuration> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-dependency-plugin</artifactId> |
||||
<executions> |
||||
<execution> |
||||
<id>install</id> |
||||
<phase>install</phase> |
||||
<goals> |
||||
<goal>sources</goal> |
||||
</goals> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
</plugins> |
||||
</build> |
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.mitre</groupId> |
||||
<artifactId>openid-connect-server</artifactId> |
||||
<version>1.1.0-SNAPSHOT</version> |
||||
</dependency> |
||||
</dependencies> |
||||
</project> |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 135 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |