Skip to content

Commit

Permalink
Update for latest TCK bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Sep 1, 2010
1 parent 53658f8 commit bdd2525
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 11 deletions.
16 changes: 8 additions & 8 deletions dist-tck/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-parent</artifactId>
<version>12</version>
<version>17</version>
</parent>
<groupId>org.jboss.jsr299.tck</groupId>
<artifactId>jsr299-tck-dist</artifactId>
Expand Down Expand Up @@ -128,19 +128,19 @@
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<finalName>jsr299-tck-${cdi.tck.version}</finalName>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<id>distribution</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<finalName>jsr299-tck-${cdi.tck.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion dist-tck/porting-package/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-parent</artifactId>
<version>6</version>
<version>17</version>
</parent>
<groupId>org.jboss.jsr299.tck</groupId>
<artifactId>jsr299-tck-dist-porting-package</artifactId>
Expand Down
56 changes: 54 additions & 2 deletions dist-tck/release-notes.txt
@@ -1,9 +1,61 @@
-------------
* 1.0.1.Final *
* 1.0.2.CR1 *
-------------

Known Issues
-------------

There are no known critical or showstopper issues
* You must use the JBoss AS Snapshot () to run the TCK incontainer as described in
Chapter 7, Section 3.
* You must add the JBoss Maven repository to your ~/.m2/settings.xml to run the
TCK as described in Chapter 7, Section 2.

<settings>

<!-- Existing contents of settings.xml -->

<profiles>
<profile>
<id>jboss-public-repository</id>
<activation>
<property>
<name>jboss-public-repository</name>
<value>!false</value>
</property>
</activation>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://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-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>

</profiles>

</settings>

0 comments on commit bdd2525

Please sign in to comment.