Skip to content

Commit

Permalink
Changed artifact artifactId, name and parent
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakknutsen committed May 22, 2012
1 parent f5056e8 commit c077a60
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 140 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -40,7 +40,7 @@
<module>ui</module>
<module>multinode</module>
<module>extensions</module>
<<module>spring</module>
<module>spring</module>
</modules>
</profile>
<profile>
Expand Down
118 changes: 6 additions & 112 deletions spring/pom.xml
@@ -1,22 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>arquillian-showcase</artifactId>
<artifactId>arquillian-showcase-parent</artifactId>
<groupId>org.jboss.arquillian.showcase</groupId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<artifactId>arquillian-showcase-spring</artifactId>
<packaging>pom</packaging>

<name>Showcase for Arquillian Spring Framework Extension</name>
<name>Arquillian Showcase Spring Aggregator</name>
<url>http://www.jboss.org</url>
<description>Showcase for Spring Framework extension for Arquillian</description>

Expand All @@ -34,9 +34,6 @@

<!-- Properties -->
<properties>
<!-- jboss-parent override -->
<maven.compiler.argument.target>1.5</maven.compiler.argument.target>
<maven.compiler.argument.source>1.5</maven.compiler.argument.source>

<!-- Arquillian version -->
<version.arquillian>1.0.0.Final</version.arquillian>
Expand All @@ -51,40 +48,10 @@
<version.cglib>2.2.2</version.cglib>
</properties>

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

<!-- Dependency Management -->
<dependencyManagement>
<dependencies>

<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>3.0.0.Final</version>
<type>pom</type>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>${version.arquillian}</version>
<scope>import</scope>
<type>pom</type>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.extension</groupId>
<artifactId>arquillian-service-deployer-spring-3</artifactId>
Expand Down Expand Up @@ -189,64 +156,6 @@
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.argument.source}</source>
<target>${maven.compiler.argument.target}</target>
</configuration>
</plugin>

<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>
<useFile>true</useFile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>signature-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<activation>
Expand All @@ -263,7 +172,6 @@
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-managed</artifactId>
<version>7.1.1.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -347,20 +255,6 @@
<url>http://repo.springsource.org/release</url>
</repository>

<!-- Uncomment when running the tests for JBoss AS 6 -->
<!--<repository>-->
<!--<id>jboss-deprecated</id>-->
<!--<name>JBoss Deprecated</name>-->
<!--<url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url>-->
<!--<layout>default</layout>-->
<!--<releases>-->
<!--<enabled>true</enabled>-->
<!--<updatePolicy>never</updatePolicy>-->
<!--</releases>-->
<!--<snapshots>-->
<!--<enabled>false</enabled>-->
<!--</snapshots>-->
<!--</repository>-->
</repositories>

</project>
7 changes: 4 additions & 3 deletions spring/spring-ejb/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-ejb</artifactId>
<artifactId>arquillian-showcase-spring-ejb</artifactId>
<packaging>jar</packaging>

<name>EJB3 Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: EJB3</name>
<url>http://www.jboss.org</url>
<description>EJB3 Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-hibernate/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-hibernate</artifactId>
<artifactId>arquillian-showcase-spring-hibernate</artifactId>
<packaging>jar</packaging>

<name>Hibernate Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: Hibernate</name>
<url>http://www.jboss.org</url>
<description>Hibernate Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-inject/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-inject</artifactId>
<artifactId>arquillian-showcase-spring-inject</artifactId>
<packaging>jar</packaging>

<name>Injection Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: Injection</name>
<url>http://www.jboss.org</url>
<description>Injection Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-javaconfig/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-javaconfig</artifactId>
<artifactId>arquillian-showcase-spring-javaconfig</artifactId>
<packaging>jar</packaging>

<name>Java-based Configuration Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: Java-based Configuration</name>
<url>http://www.jboss.org</url>
<description>Java-based Configuration Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-jdbc/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-jdbc</artifactId>
<artifactId>arquillian-showcase-spring-jdbc</artifactId>
<packaging>jar</packaging>

<name>JDBC Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: JDBC</name>
<url>http://www.jboss.org</url>
<description>JDBC Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-jms/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-jms</artifactId>
<artifactId>arquillian-showcase-spring-jms</artifactId>
<packaging>jar</packaging>

<name>JMS Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: JMS</name>
<url>http://www.jboss.org</url>
<description>JMS Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-jpa/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-jpa</artifactId>
<artifactId>arquillian-showcase-spring-jpa</artifactId>
<packaging>jar</packaging>

<name>JPA Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: JPA</name>
<url>http://www.jboss.org</url>
<description>JPA Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-jsr330/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-jsr330</artifactId>
<artifactId>arquillian-showcase-spring-jsr330</artifactId>
<packaging>jar</packaging>

<name>JSR-330 Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: JSR-330</name>
<url>http://www.jboss.org</url>
<description>JSR-330 Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down
7 changes: 4 additions & 3 deletions spring/spring-testng/pom.xml
Expand Up @@ -6,18 +6,19 @@
<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring</artifactId>
<artifactId>arquillian-showcase-spring</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

<!-- Model Version -->
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.arquillian.showcase</groupId>
<artifactId>spring-testng</artifactId>
<artifactId>arquillian-showcase-spring-testng</artifactId>
<packaging>jar</packaging>

<name>TestNG Showcase Arquillian Spring Framework 3 Extension</name>
<name>Arquillian Showcase Spring: TestNG</name>
<url>http://www.jboss.org</url>
<description>TestNG Showcase of Spring Framework 3 extension for Arquillian</description>

Expand Down

0 comments on commit c077a60

Please sign in to comment.