Skip to content

Commit

Permalink
[SHRINKWRAP-341] Create new repo for SIP extension to SW
Browse files Browse the repository at this point in the history
  • Loading branch information
ALRubinger committed Sep 30, 2011
1 parent 2a628d9 commit 6d1d529
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 16 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.settings
.project
.classpath
target
bin
4 changes: 2 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.sip</groupId>
<artifactId>shrinkwrap-sip-parent</artifactId>
<version>1.0.0-beta-7-SNAPSHOT</version>
<version>1.0.0-alpha-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -35,7 +35,7 @@
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-api</artifactId>
<version>${project.version}</version>
<version>${version.org.jboss.shrinkwrap}</version>
</dependency>

</dependencies>
Expand Down
10 changes: 6 additions & 4 deletions impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.shrinkwrap.sip</groupId>
<artifactId>shrinkwrap-sip-parent</artifactId>
<version>1.0.0-beta-7-SNAPSHOT</version>
<version>1.0.0-alpha-1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -54,17 +54,18 @@
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-api</artifactId>
<version>${project.version}</version>
<version>${version.org.jboss.shrinkwrap}</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<version>${project.version}</version>
<version>${version.org.jboss.shrinkwrap}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<version>${project.version}</version>
<version>${version.org.jboss.shrinkwrap}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand All @@ -76,6 +77,7 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.8</version>
</dependency>

</dependencies>
Expand Down
103 changes: 93 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@

<!-- Parent -->
<parent>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-parent</artifactId>
<version>1.0.0-beta-7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>5</version>
</parent>

<!-- Model Information -->
Expand All @@ -18,21 +17,105 @@
<!-- Artifact Information -->
<groupId>org.jboss.shrinkwrap.sip</groupId>
<artifactId>shrinkwrap-sip-parent</artifactId>
<version>1.0.0-alpha-1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ShrinkWrap SIP Servlets WAR Extension Aggregator</name>
<description>ShrinkWrap SIP Servlets WAR Extension Aggregator</description>

<!-- Plugin Configuration -->
<!-- Aggregate Modules -->
<modules>
<module>api</module>
<module>impl</module>
</modules>

<!-- Versioning -->
<properties>
<version.org.jboss.shrinkwrap>1.0.0-beta-6</version.org.jboss.shrinkwrap>
</properties>

<!-- SCM -->
<scm>
<connection>scm:git:git://github.com/shrinkwrap/shrinkwrap-sip.git</connection>
<developerConnection>scm:git:git@github.com:shrinkwrap/shrinkwrap-sip.git</developerConnection>
<url>https://github.com/shrinkwrap/shrinkwrap-sip</url>
</scm>

<!-- Issues -->
<issueManagement>
<system>jira</system>
<url>http://jira.jboss.com/jira/browse/SHRINKWRAP</url>
</issueManagement>

<!-- Licenses -->
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<!-- Build Configuration -->
<build>

<plugins>

<!-- Release -->
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>

<!-- Surefire -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<trimStackTrace>false</trimStackTrace>
<printSummary>true</printSummary>
<includes>
<include>**/*TestCase.java</include>
<include>**/*TestSuite.java</include>
</includes>
<forkMode>always</forkMode>
</configuration>
</plugin>
</plugins>

</build>

<!-- Aggregate Modules -->
<modules>
<module>api</module>
<module>impl</module>
</modules>
<repositories>
<repository>
<id>jboss-public-repository</id>
<name>JBoss Repository</name>
<url> https://repository.jboss.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository</id>
<name>JBoss Repository</name>
<url> https://repository.jboss.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit 6d1d529

Please sign in to comment.