Looks like there was a formatting accident :) When you get a chance, convert those tabs to 2 spaces and restore the header formatting (reformatting headers really messes with the rat tool).
Great to see this being hacked on again. -David On Jul 6, 2011, at 2:28 PM, [email protected] wrote: > Author: kmalhi > Date: Wed Jul 6 21:28:08 2011 > New Revision: 1143570 > > URL: http://svn.apache.org/viewvc?rev=1143570&view=rev > Log: > Added jboss repo and updated arquillian version > > Modified: > openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-container/pom.xml > > Modified: > openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-container/pom.xml > URL: > http://svn.apache.org/viewvc/openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-container/pom.xml?rev=1143570&r1=1143569&r2=1143570&view=diff > ============================================================================== > --- openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-container/pom.xml > (original) > +++ openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-container/pom.xml > Wed Jul 6 21:28:08 2011 > @@ -1,193 +1,191 @@ > <?xml version="1.0"?> > -<!-- > - > - Licensed to the Apache Software Foundation (ASF) under one or more > - contributor license agreements. See the NOTICE file distributed with > - this work for additional information regarding copyright ownership. > - The ASF licenses this file to You under the Apache License, Version 2.0 > - (the "License"); you may not use this file except in compliance with > - the License. You may obtain a copy of the License at > - > - http://www.apache.org/licenses/LICENSE-2.0 > - > - Unless required by applicable law or agreed to in writing, software > - distributed under the License is distributed on an "AS IS" BASIS, > - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. > - See the License for the specific language governing permissions and > - limitations under the License. > ---> > +<!-- Licensed to the Apache Software Foundation (ASF) under one or more > contributor > + license agreements. See the NOTICE file distributed with this work for > additional > + information regarding copyright ownership. The ASF licenses this file > to > + You under the Apache License, Version 2.0 (the "License"); you may not > use > + this file except in compliance with the License. You may obtain a copy > of > + the License at http://www.apache.org/licenses/LICENSE-2.0 Unless > required > + by applicable law or agreed to in writing, software distributed under > the > + License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR > CONDITIONS > + OF ANY KIND, either express or implied. See the License for the > specific > + language governing permissions and limitations under the License. --> > <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/xsd/maven-4.0.0.xsd"> > - <modelVersion>4.0.0</modelVersion> > - <parent> > - <artifactId>arquillian-tomee</artifactId> > - <groupId>org.apache.openejb</groupId> > - <version>1.0-SNAPSHOT</version> > - </parent> > - <groupId>org.apache.openejb</groupId> > - <artifactId>arquillian-tomee-container</artifactId> > - <version>1.0-SNAPSHOT</version> > - <packaging>jar</packaging> > - > - <name>arquillian-tomee</name> > - <url>http://maven.apache.org</url> > - > - <properties> > - <version.org.apache.tomcat>7.0.12</version.org.apache.tomcat> > - <version.cdi-api>1.0</version.cdi-api> > - <version.arquillian>1.0.0-SNAPSHOT</version.arquillian> > - </properties> > - > - <repositories> > - <repository> > - <id>apache-m2-snapshot</id> > - <name>Apache Snapshot Repository</name> > - <url>http://repository.apache.org/snapshots</url> > - </repository> > - </repositories> > - > - <dependencies> > - > - <dependency> > - <groupId>org.jboss.arquillian</groupId> > - <artifactId>arquillian-spi</artifactId> > - <version>${version.arquillian}</version> > - </dependency> > - > - <dependency> > - <groupId>org.jboss.arquillian.protocol</groupId> > - <artifactId>arquillian-protocol-servlet</artifactId> > - <version>${version.arquillian}</version> > - </dependency> > - > - <dependency> > - <groupId>org.jboss.arquillian.testenricher</groupId> > - <artifactId>arquillian-testenricher-cdi</artifactId> > - <version>${version.arquillian}</version> > - </dependency> > - > - <dependency> > - <groupId>org.jboss.arquillian.testenricher</groupId> > - <artifactId>arquillian-testenricher-resource</artifactId> > - <version>${version.arquillian}</version> > - </dependency> > - > - <dependency> > - <groupId>org.jboss.arquillian.testenricher</groupId> > - <artifactId>arquillian-testenricher-ejb</artifactId> > - <version>${version.arquillian}</version> > - </dependency> > - > - <dependency> > - <groupId>org.apache.tomcat</groupId> > - <artifactId>tomcat-catalina</artifactId> > - <version>${version.org.apache.tomcat}</version> > - </dependency> > - > - <dependency> > - <groupId>org.apache.tomcat</groupId> > - <artifactId>tomcat-coyote</artifactId> > - <version>${version.org.apache.tomcat}</version> > - </dependency> > - > - <dependency> > - <groupId>org.apache.tomcat</groupId> > - <artifactId>tomcat-jasper</artifactId> > - <version>${version.org.apache.tomcat}</version> > - <exclusions> > - <exclusion> > - <groupId>org.eclipse.jdt.core.compiler</groupId> > - <artifactId>ecj</artifactId> > - </exclusion> > - </exclusions> > - </dependency> > - > - <dependency> > - <groupId>org.jboss.arquillian</groupId> > - <artifactId>arquillian-junit</artifactId> > - <version>${version.arquillian}</version> > - <scope>test</scope> > - </dependency> > - > - <dependency> > - <groupId>javax.enterprise</groupId> > - <artifactId>cdi-api</artifactId> > - <version>${version.cdi-api}</version> > - <scope>test</scope> > - </dependency> > - > - <dependency> > - <groupId>junit</groupId> > - <artifactId>junit</artifactId> > - <version>4.8.1</version> > - <scope>test</scope> > - </dependency> > - > - <dependency> > - <groupId>org.eclipse.jdt.core.compiler</groupId> > - <artifactId>ecj</artifactId> > - <version>3.5.1</version> > - <type>jar</type> > - <scope>compile</scope> > - </dependency> > - <dependency> > - <groupId>org.apache.openejb</groupId> > - <artifactId>javaee-api</artifactId> > - <version>6.0-SNAPSHOT</version> > - <type>jar</type> > - </dependency> > - <dependency> > - <groupId>org.apache.velocity</groupId> > - <artifactId>velocity</artifactId> > - <version>1.6.4</version> > - <type>jar</type> > - <scope>compile</scope> > - </dependency> > - <dependency> > - <groupId>org.apache.geronimo.specs</groupId> > - <artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId> > - <version>1.1</version> > - <type>jar</type> > - <scope>compile</scope> > - </dependency> > - <dependency> > - <groupId>org.apache.openejb</groupId> > - <artifactId>openejb-client</artifactId> > - <version>4.0.0-SNAPSHOT</version> > - <type>jar</type> > - <scope>test</scope> > - </dependency> > - </dependencies> > - > - <build> > - <plugins> > - <plugin> > - <groupId>org.apache.maven.plugins</groupId> > - <artifactId>maven-dependency-plugin</artifactId> > - <version>2.2</version> > - <executions> > - <execution> > - <id>copy</id> > - <phase>generate-sources</phase> > - <goals> > - <goal>copy</goal> > - </goals> > - <configuration> > - <artifactItems> > - <artifactItem> > - <groupId>org.apache.openejb</groupId> > - <artifactId>openejb-tomcat-webapp</artifactId> > - <version>4.0.0-SNAPSHOT</version> > - <type>war</type> > - <overWrite>false</overWrite> > - <outputDirectory>lib</outputDirectory> > - <destFileName>openejb.war</destFileName> > - </artifactItem> > - </artifactItems> > - </configuration> > - </execution> > - </executions> > - </plugin> > - </plugins> > - </build> > + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/xsd/maven-4.0.0.xsd"> > + <modelVersion>4.0.0</modelVersion> > + <parent> > + <artifactId>arquillian-tomee</artifactId> > + <groupId>org.apache.openejb</groupId> > + <version>1.0-SNAPSHOT</version> > + </parent> > + <groupId>org.apache.openejb</groupId> > + <artifactId>arquillian-tomee-container</artifactId> > + <version>1.0-SNAPSHOT</version> > + <packaging>jar</packaging> > + > + <name>arquillian-tomee</name> > + <url>http://openejb.apache.org</url> > + > + <properties> > + <version.org.apache.tomcat>7.0.12</version.org.apache.tomcat> > + <version.cdi-api>1.0</version.cdi-api> > + <version.arquillian>1.0.0.Alpha5</version.arquillian> > + </properties> > + > + <repositories> > + <repository> > + <id>apache-m2-snapshot</id> > + <name>Apache Snapshot Repository</name> > + <url>http://repository.apache.org/snapshots</url> > + </repository> > + <repository> > + <id>jboss-public</id> > + <name>JBoss public repo</name> > + > <url>https://repository.jboss.org/nexus/content/groups/public</url> > + </repository> > + </repositories> > + > + <dependencies> > + > + <dependency> > + <groupId>org.jboss.arquillian</groupId> > + <artifactId>arquillian-spi</artifactId> > + <version>${version.arquillian}</version> > + </dependency> > + > + <dependency> > + <groupId>org.jboss.arquillian.protocol</groupId> > + <artifactId>arquillian-protocol-servlet</artifactId> > + <version>${version.arquillian}</version> > + </dependency> > + > + <dependency> > + <groupId>org.jboss.arquillian.testenricher</groupId> > + <artifactId>arquillian-testenricher-cdi</artifactId> > + <version>${version.arquillian}</version> > + </dependency> > + > + <dependency> > + <groupId>org.jboss.arquillian.testenricher</groupId> > + > <artifactId>arquillian-testenricher-resource</artifactId> > + <version>${version.arquillian}</version> > + </dependency> > + > + <dependency> > + <groupId>org.jboss.arquillian.testenricher</groupId> > + <artifactId>arquillian-testenricher-ejb</artifactId> > + <version>${version.arquillian}</version> > + </dependency> > + > + <dependency> > + <groupId>org.apache.tomcat</groupId> > + <artifactId>tomcat-catalina</artifactId> > + <version>${version.org.apache.tomcat}</version> > + </dependency> > + > + <dependency> > + <groupId>org.apache.tomcat</groupId> > + <artifactId>tomcat-coyote</artifactId> > + <version>${version.org.apache.tomcat}</version> > + </dependency> > + > + <dependency> > + <groupId>org.apache.tomcat</groupId> > + <artifactId>tomcat-jasper</artifactId> > + <version>${version.org.apache.tomcat}</version> > + <exclusions> > + <exclusion> > + > <groupId>org.eclipse.jdt.core.compiler</groupId> > + <artifactId>ecj</artifactId> > + </exclusion> > + </exclusions> > + </dependency> > + > + <dependency> > + <groupId>org.jboss.arquillian</groupId> > + <artifactId>arquillian-junit</artifactId> > + <version>${version.arquillian}</version> > + <scope>test</scope> > + </dependency> > + > + <dependency> > + <groupId>javax.enterprise</groupId> > + <artifactId>cdi-api</artifactId> > + <version>${version.cdi-api}</version> > + <scope>test</scope> > + </dependency> > + > + <dependency> > + <groupId>junit</groupId> > + <artifactId>junit</artifactId> > + <version>4.8.1</version> > + <scope>test</scope> > + </dependency> > + > + <dependency> > + <groupId>org.eclipse.jdt.core.compiler</groupId> > + <artifactId>ecj</artifactId> > + <version>3.5.1</version> > + <type>jar</type> > + <scope>compile</scope> > + </dependency> > + <dependency> > + <groupId>org.apache.openejb</groupId> > + <artifactId>javaee-api</artifactId> > + <version>6.0-SNAPSHOT</version> > + <type>jar</type> > + </dependency> > + <dependency> > + <groupId>org.apache.velocity</groupId> > + <artifactId>velocity</artifactId> > + <version>1.6.4</version> > + <type>jar</type> > + <scope>compile</scope> > + </dependency> > + <dependency> > + <groupId>org.apache.geronimo.specs</groupId> > + > <artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId> > + <version>1.1</version> > + <type>jar</type> > + <scope>compile</scope> > + </dependency> > + <dependency> > + <groupId>org.apache.openejb</groupId> > + <artifactId>openejb-client</artifactId> > + <version>4.0.0-SNAPSHOT</version> > + <type>jar</type> > + <scope>test</scope> > + </dependency> > + </dependencies> > + > + <build> > + <plugins> > + <plugin> > + <groupId>org.apache.maven.plugins</groupId> > + <artifactId>maven-dependency-plugin</artifactId> > + <version>2.2</version> > + <executions> > + <execution> > + <id>copy</id> > + <phase>generate-sources</phase> > + <goals> > + <goal>copy</goal> > + </goals> > + <configuration> > + <artifactItems> > + <artifactItem> > + > <groupId>org.apache.openejb</groupId> > + > <artifactId>openejb-tomcat-webapp</artifactId> > + > <version>4.0.0-SNAPSHOT</version> > + > <type>war</type> > + > <overWrite>false</overWrite> > + > <outputDirectory>lib</outputDirectory> > + > <destFileName>openejb.war</destFileName> > + </artifactItem> > + </artifactItems> > + </configuration> > + </execution> > + </executions> > + </plugin> > + </plugins> > + </build> > </project> > > >
