[Contestj-developer] contestj/contestj2 pom.xml, NONE, 1.1 README, NONE, 1.1
Status: Inactive
Brought to you by:
thomasra
|
From: Ståle P. <st...@us...> - 2007-06-20 14:54:18
|
Update of /cvsroot/contestj/contestj/contestj2 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14426/contestj2 Added Files: pom.xml README Log Message: Initial upload of Contestj2 even though it supports most of the Contestj features its not ready to be used atm. --- NEW FILE: README --- Contestj2 is an attempt to rewrite ContestJ to make it more flexible, easier to maintain and more features. The test can only be run manually (or within an ide).. more to come.. --- NEW FILE: pom.xml --- <?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"> <modelVersion>4.0.0</modelVersion> <groupId>org.contestj</groupId> <artifactId>contestj2</artifactId> <name>Contestj2</name> <version>1.0.0-SNAPSHOT</version> <packaging>jar</packaging> <build> <sourceDirectory>src/main/java</sourceDirectory> <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <outputDirectory>target/classes</outputDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <defaultGoal>install</defaultGoal> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <directory>target</directory> <finalName>${artifactId}-${version}</finalName> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ejb-plugin</artifactId> <version>2.1-SNAPSHOT</version> <configuration> <ejbVersion>3.0</ejbVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ear-plugin</artifactId> <version>2.2</version> <configuration> <ejbVersion>3.0</ejbVersion> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*DeepTest.java</exclude> <exclude>**/Abstract*Test.java</exclude> <exclude>**/Abstract*TestCase.java</exclude> <exclude>**/*$*</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-idea-plugin</artifactId> <configuration> <jdkLevel>${jdkVersion}</jdkLevel> <jdkName>${jdkVersion}</jdkName> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <source>${jdkVersion}</source> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${jdkVersion}</source> <target>${jdkVersion}</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <repositories> <repository> <id>apache_repo</id> <name>Aspiro repository</name> <url>http://people.apache.org/repo/m2-snapshot-repository</url> </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Maven Repository Switchboard</name> <url>http://repo1.maven.org/maven2</url> </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>jboss_repo</id> <name>JBoss Maven Repository</name> <url>http://repository.jboss.com/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Maven Plugin Repository</name> <url>http://repo1.maven.org/maven2</url> </pluginRepository> <pluginRepository> <releases/> <snapshots> <enabled>true</enabled> </snapshots> <id>apache-plugins</id> <url>http://people.apache.org/maven-snapshot-repository/</url> </pluginRepository> </pluginRepositories> <!-- <url>http://stdb.inpoc.com/maven-sites/amp-root</url> --> <dependencies> <dependency> <groupId>jboss</groupId> <artifactId>jboss-system</artifactId> <version>4.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-jmx</artifactId> <version>4.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss.jboss-aop</groupId> <artifactId>jboss-aop</artifactId> <version>1.5.0.GA</version> <!-- <version>1.5.0.GA</version> --> <scope>provided</scope> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.4.GA</version> <scope>provided</scope> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-cache</artifactId> <version>1.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.8</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <properties> <jdkVersion>1.5</jdkVersion> </properties> </project> |