Hi, This should have the pom in trunks-sandbox as its parent (see exec, for example).
I've used different conventions (eg, org.apache.commons as the groupID) - Brett [EMAIL PROTECTED] wrote: > Author: tcurdt > Date: Wed Feb 1 18:44:46 2006 > New Revision: 374228 > > URL: http://svn.apache.org/viewcvs?rev=374228&view=rev > Log: > basic maven2 pom > > Added: > jakarta/commons/sandbox/jci/trunk/pom.xml (with props) > > Added: jakarta/commons/sandbox/jci/trunk/pom.xml > URL: > http://svn.apache.org/viewcvs/jakarta/commons/sandbox/jci/trunk/pom.xml?rev=374228&view=auto > ============================================================================== > --- jakarta/commons/sandbox/jci/trunk/pom.xml (added) > +++ jakarta/commons/sandbox/jci/trunk/pom.xml Wed Feb 1 18:44:46 2006 > @@ -0,0 +1,70 @@ > +<project> > + <modelVersion>4.0.0</modelVersion> > + <groupId>jakarta-commons</groupId> > + <artifactId>jakarta-commons-jci</artifactId> > + <version>1.0-SNAPSHOT</version> > + <description></description> > + > + <repositories> > + <repository> > + <id>Maven Snapshots</id> > + <url>http://snapshots.maven.codehaus.org/maven2/</url> > + <snapshots> > + <enabled>true</enabled> > + </snapshots> > + <releases> > + <enabled>false</enabled> > + </releases> > + </repository> > + </repositories> > + > + <build> > + <sourceDirectory>src/java</sourceDirectory> > + <pluginManagement> > + <plugins> > + <plugin> > + <groupId>org.codehaus.mojo.minijar</groupId> > + <artifactId>maven-minijar-plugin</artifactId> > + <configuration></configuration> > + </plugin> > + </plugins> > + </pluginManagement> > + </build> > + <dependencies> > + <dependency> > + <groupId>commons-io</groupId> > + <artifactId>commons-io</artifactId> > + <version>1.1</version> > + </dependency> > + <dependency> > + <groupId>commons-lang</groupId> > + <artifactId>commons-lang</artifactId> > + <version>2.1</version> > + </dependency> > + <dependency> > + <groupId>commons-logging</groupId> > + <artifactId>commons-logging-api</artifactId> > + <version>1.0.4</version> > + </dependency> > + <dependency> > + <groupId>commons-collections</groupId> > + <artifactId>commons-collections</artifactId> > + <version>3.1</version> > + </dependency> > + <dependency> > + <groupId>org.eclipse.jdt</groupId> > + <artifactId>core</artifactId> > + <version>3.1.0</version> > + </dependency> > + <dependency> > + <groupId>groovy</groupId> > + <artifactId>groovy-all-1.0-jsr</artifactId> > + <version>03</version> > + </dependency> > + <dependency> > + <groupId>janino</groupId> > + <artifactId>janino</artifactId> > + <version>2.3.7</version> > + </dependency> > + </dependencies> > +</project> > > Propchange: jakarta/commons/sandbox/jci/trunk/pom.xml > ------------------------------------------------------------------------------ > svn:eol-style = native > > Propchange: jakarta/commons/sandbox/jci/trunk/pom.xml > ------------------------------------------------------------------------------ > svn:keywords = Id > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
