-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
198 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,19 +19,14 @@ | |
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.kuali.pom</groupId> | ||
<artifactId>kuali-common</artifactId> | ||
<version>4.3.10</version> | ||
</parent> | ||
<groupId>org.kuali.coeus</groupId> | ||
<artifactId>coeus-s2sgen</artifactId> | ||
<version>6.0.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<description> | ||
This coeus s2s generator project contains s2s generators for grants.gov and research.gov form submission | ||
</description> | ||
<url>http://${kuali.site.hostname}/coeus/coeus-s2sgen/${project.version}</url> | ||
<url>http://kuali.org/kc</url> | ||
<inceptionYear>2014</inceptionYear> | ||
<licenses> | ||
<license> | ||
|
@@ -40,12 +35,7 @@ | |
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:[email protected]:kualico/kc-s2sgen.git</connection> | ||
<developerConnection>scm:git:[email protected]:kualico/kc-s2sgen.git</developerConnection> | ||
<url>https://github.com/kualico/kc-s2sgen/tree/${project.scm.tag}</url> | ||
<tag>master</tag> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<id>kc.dev</id> | ||
|
@@ -61,10 +51,6 @@ | |
</prerequisites> | ||
|
||
<properties> | ||
<project.scm.vendor>git</project.scm.vendor> | ||
|
||
<require.maven.version>3.0</require.maven.version> | ||
|
||
<avalon-framework.version>4.3.1</avalon-framework.version> | ||
<bouncycastle.version>1.51</bouncycastle.version> | ||
<coeus-api-all.version>6.0.0.1</coeus-api-all.version> | ||
|
@@ -78,15 +64,41 @@ | |
<xalan.version>2.7.1</xalan.version> | ||
<xmlsec.version>1.5.6</xmlsec.version> | ||
<xmlbeans.version>2.6.0</xmlbeans.version> | ||
|
||
<xmlbeans-maven-plugin.version>2.3.3</xmlbeans-maven-plugin.version> | ||
|
||
<error_prone_core.version>1.1.2</error_prone_core.version> | ||
<plexus-compiler-javac.version>2.3</plexus-compiler-javac.version> | ||
<plexus-compiler-javac-errorprone.version>2.3</plexus-compiler-javac-errorprone.version> | ||
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> | ||
<error_prone_core.version>2.0.1</error_prone_core.version> | ||
<plexus-compiler-javac.version>2.5</plexus-compiler-javac.version> | ||
<plexus-compiler-javac-errorprone.version>2.5</plexus-compiler-javac-errorprone.version> | ||
<kuali.javadoc.maxmemory>3g</kuali.javadoc.maxmemory> | ||
|
||
<require.maven.version>3.0</require.maven.version> | ||
|
||
<project.encoding>UTF-8</project.encoding> | ||
<project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>${project.encoding}</project.reporting.outputEncoding> | ||
|
||
<project.java.version>1.7</project.java.version> | ||
<!-- These are used by multiple plugins (compiler, javadoc, xref, etc) --> | ||
<project.compile.source>${project.java.version}</project.compile.source> | ||
<project.compile.target>${project.java.version}</project.compile.target> | ||
|
||
<kuali.agpl3.license.url>http://www.gnu.org/licenses/agpl-3.0.txt</kuali.agpl3.license.url> | ||
|
||
<scm.connection>scm:git:git://github.com/kuali/kc-s2sgen.git</scm.connection> | ||
<scm.developerConnection>scm:git:[email protected]:kuali/kc-s2sgen.git</scm.developerConnection> | ||
<scm.url>https://github.com/kuali/kc-s2sgen</scm.url> | ||
|
||
<issueManagement.system>github</issueManagement.system> | ||
<issueManagement.url>https://github.com/kuali/kc-s2sgen/issues</issueManagement.url> | ||
|
||
<dm.snapshotRepository.id>kuali.snapshot</dm.snapshotRepository.id> | ||
<dm.snapshotRepository.name>Main Kuali Repository</dm.snapshotRepository.name> | ||
<dm.snapshotRepository.url>scp://test.kuali.org:/opt/m2/repository</dm.snapshotRepository.url> | ||
|
||
<dm.repository.id>kuali.snapshot</dm.repository.id> | ||
<dm.repository.name>Kuali Snapshot Repository</dm.repository.name> | ||
<dm.repository.url>s3://maven.kuali.org/snapshot</dm.repository.url> | ||
</properties> | ||
|
||
<modules> | ||
|
@@ -100,7 +112,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${plugin.compiler.version}</version> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<source>${project.compile.source}</source> | ||
<target>${project.compile.target}</target> | ||
|
@@ -337,6 +349,118 @@ | |
</dependencyManagement> | ||
|
||
<profiles> | ||
<profile> | ||
<id>grm</id> | ||
<!-- comment out activation section to turn this profile off permanently--> | ||
<activation> | ||
<property> | ||
<name>!grm.off</name> | ||
</property> | ||
</activation> | ||
|
||
<properties> | ||
<scm.connection>scm:git:git://github.com/kualico/kc-s2sgen.git</scm.connection> | ||
<scm.developerConnection>scm:git:[email protected]:kualico/kc-s2sgen.git</scm.developerConnection> | ||
<scm.url>https://github.com/kualico/kc-s2sgen</scm.url> | ||
|
||
<issueManagement.system>github</issueManagement.system> | ||
<issueManagement.url>https://github.com/kualico/kc-s2sgen/issues</issueManagement.url> | ||
|
||
<dm.snapshotRepository.id>rsmart.snapshot.repo</dm.snapshotRepository.id> | ||
<dm.snapshotRepository.name>rsmart snapshot repository</dm.snapshotRepository.name> | ||
<dm.snapshotRepository.url>s3://rsmart-dev/artifacts/maven/snapshot</dm.snapshotRepository.url> | ||
|
||
<dm.repository.id>rsmart.release.repo</dm.repository.id> | ||
<dm.repository.name>rsmart release repository</dm.repository.name> | ||
<dm.repository.url>s3://rsmart-dev/artifacts/maven/release</dm.repository.url> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.rsmart</groupId> | ||
<artifactId>tokenauth</artifactId> | ||
<version>${rsmart.cx.token.auth.version}</version> | ||
<scope>runtime</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>co.kuali</groupId> | ||
<artifactId>kc-sql</artifactId> | ||
<version>${kc-sql.version}</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.rsmart.kuali</groupId> | ||
<artifactId>kc_hr_rest</artifactId> | ||
<version>${rsmart.hr.rest.version}</version> | ||
<scope>runtime</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.codehaus.jackson</groupId> | ||
<artifactId>jackson-core-asl</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>asm</groupId> | ||
<artifactId>asm</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>co.kuali.schemaspy</groupId> | ||
<artifactId>schemaspy</artifactId> | ||
<version>${schemaspy.version}</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<repositories> | ||
<repository> | ||
<id>rsmart-dev</id> | ||
<name>rSmart Nexus Repository Manager</name> | ||
<url>https://nexus.rsmart.com/nexus/content/groups/public/</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
</repository> | ||
</repositories> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>rsmart-dev</id> | ||
<name>rSmart Nexus Repository Manager</name> | ||
<url>https://nexus.rsmart.com/nexus/content/groups/public/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
</profile> | ||
|
||
<!-- enables the error prone compiler for strict compilation--> | ||
<profile> | ||
<id>error-prone</id> | ||
|
@@ -381,4 +505,56 @@ | |
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<repositories> | ||
<repository> | ||
<id>kuali.nexus</id> | ||
<name>Kuali Nexus Repository Manager</name> | ||
<url>http://nexus.kuali.org/content/groups/public</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>kuali.nexus</id> | ||
<name>Kuali Nexus Repository Manager</name> | ||
<url>http://nexus.kuali.org/content/groups/public</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<scm> | ||
<connection>${scm.connection}</connection> | ||
<developerConnection>${scm.developerConnection}</developerConnection> | ||
<url>${scm.url}</url> | ||
</scm> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>${dm.snapshotRepository.id}</id> | ||
<name>${dm.snapshotRepository.name}</name> | ||
<url>${dm.snapshotRepository.url}</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>${dm.repository.id}</id> | ||
<name>${dm.repository.name}</name> | ||
<url>${dm.repository.url}</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<issueManagement> | ||
<system>${issueManagement.system}</system> | ||
<url>${issueManagement.url}</url> | ||
</issueManagement> | ||
</project> |