Skip to content

Commit

Permalink
Pull out TCK SPEC mapper to standalone project. (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
tremes authored and antoinesd committed May 9, 2017
1 parent 57ce847 commit 3081288
Show file tree
Hide file tree
Showing 12 changed files with 82 additions and 652 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

<modules>
<module>spec</module>
<module>tck-mapper</module>
<module>api</module>
</modules>
<build>
Expand Down
82 changes: 82 additions & 0 deletions spec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,88 @@
</pluginRepository>
</pluginRepositories>
</profile>

<profile>
<id>tck</id>
<properties>
<path.to.cdi.spec>spec/target/generated-docs/cdi-spec.html</path.to.cdi.spec>
<tck.version>2.0.0.CR1</tck.version>
<tck.audit.url>https://repo1.maven.org/maven2/org/jboss/cdi/tck/cdi-tck-impl/${tck.version}/cdi-tck-impl-${tck.version}-audit-cdi.xml</tck.audit.url>
<tck.coverage.url>https://repo1.maven.org/maven2/org/jboss/cdi/tck/cdi-tck-impl/${tck.version}/cdi-tck-impl-${tck.version}-coverage-cdi.html
</tck.coverage.url>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>tck-spec-mapper</artifactId>
<version>1.0.0.Alpha2</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>target/generated-docs/images</outputDirectory>
<resources>
<resource>
<directory>src/main/resources/images/</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.jboss.tck.spec.mapper.Mapper</mainClass>
<systemProperties>
<property>
<key>spec.html.path</key>
<value>${path.to.cdi.spec}</value>
</property>
<property>
<key>tck.audit.url</key>
<value>${tck.audit.url}</value>
</property>
<property>
<key>tck.coverage.url</key>
<value>${tck.coverage.url}</value>
</property>
<property>
<key>tck.version</key>
<value>${tck.version}</value>
</property>
<property>
<key>new.spec.filename</key>
<value>spec/target/generated-docs/cdi-spec-with-assertions.html</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
Expand Down
File renamed without changes
File renamed without changes
122 changes: 0 additions & 122 deletions tck-mapper/pom.xml

This file was deleted.

62 changes: 0 additions & 62 deletions tck-mapper/src/main/java/org/jboss/cdi/tck/audit/Assertion.java

This file was deleted.

25 changes: 0 additions & 25 deletions tck-mapper/src/main/java/org/jboss/cdi/tck/audit/Group.java

This file was deleted.

54 changes: 0 additions & 54 deletions tck-mapper/src/main/java/org/jboss/cdi/tck/audit/Section.java

This file was deleted.

This file was deleted.

Loading

0 comments on commit 3081288

Please sign in to comment.