dependency shuffling and pom formatting

pull/708/merge
Justin Richer 2015-05-12 16:27:37 -04:00
parent a2edb31753
commit 1b4dba70f0
3 changed files with 83 additions and 28 deletions

22
pom.xml
View File

@ -449,11 +449,33 @@
<artifactId>openid-connect-common</artifactId> <artifactId>openid-connect-common</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.mitre</groupId> <groupId>org.mitre</groupId>
<artifactId>openid-connect-server</artifactId> <artifactId>openid-connect-server</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>uma-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>uma-server-webapp</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<!-- Other libraries --> <!-- Other libraries -->
<dependency> <dependency>

View File

@ -25,5 +25,37 @@
</parent> </parent>
<artifactId>uma-server-webapp</artifactId> <artifactId>uma-server-webapp</artifactId>
<packaging>war</packaging> <packaging>war</packaging>
<name>Deployable package of the User Managed Access (UMA) server extension to MITREid Connect</name> <name>UMA Server Webapp</name>
<description>Deployable package of the User Managed Access (UMA) server extension to MITREid Connect</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<overlays>
<overlay>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-server-webapp</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>uma-server</artifactId>
</dependency>
<dependency>
<groupId>org.mitre</groupId>
<artifactId>openid-connect-client</artifactId>
</dependency>
</dependencies>
</project> </project>

View File

@ -23,7 +23,8 @@
<version>1.2.0.UMA-SNAPSHOT</version> <version>1.2.0.UMA-SNAPSHOT</version>
</parent> </parent>
<artifactId>uma-server</artifactId> <artifactId>uma-server</artifactId>
<name>User Managed Access (UMA) extension of the MITREid Connect server</name> <name>UMA Server Library</name>
<description>User Managed Access (UMA) extension of the MITREid Connect server</description>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>