You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by tc...@apache.org on 2006/02/02 03:44:50 UTC

svn commit: r374228 - /jakarta/commons/sandbox/jci/trunk/pom.xml

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: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: svn commit: r374228 - /jakarta/commons/sandbox/jci/trunk/pom.xml

Posted by Brett Porter <br...@apache.org>.
Do you mind if I change this?

- Brett

Torsten Curdt wrote:
> 
> Thanks, for the heads up! ...it's just a starting point anyway.
> 
> cheers
> -- 
> Torsten
> 
>> 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
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org


Re: svn commit: r374228 - /jakarta/commons/sandbox/jci/trunk/pom.xml

Posted by Torsten Curdt <tc...@apache.org>.
Thanks, for the heads up! ...it's just a starting point anyway.

cheers
--
Torsten

> 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


Re: svn commit: r374228 - /jakarta/commons/sandbox/jci/trunk/pom.xml

Posted by Brett Porter <br...@apache.org>.
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

tcurdt@apache.org 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: commons-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: commons-dev-help@jakarta.apache.org
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org