You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by mr...@apache.org on 2006/07/27 04:01:57 UTC

svn commit: r425929 - in /jakarta/commons/sandbox/js2j/trunk: maven.xml pom.xml project.properties project.xml src/ src/main/ src/main/java/ src/main/java/org/

Author: mrdon
Date: Wed Jul 26 19:01:57 2006
New Revision: 425929

URL: http://svn.apache.org/viewvc?rev=425929&view=rev
Log:
Adding Maven 2 build, seeding code from Struts flow

Added:
    jakarta/commons/sandbox/js2j/trunk/pom.xml
    jakarta/commons/sandbox/js2j/trunk/src/
    jakarta/commons/sandbox/js2j/trunk/src/main/
    jakarta/commons/sandbox/js2j/trunk/src/main/java/
    jakarta/commons/sandbox/js2j/trunk/src/main/java/org/
      - copied from r421489, struts/sandbox/trunk/flow/src/java/org/
Removed:
    jakarta/commons/sandbox/js2j/trunk/maven.xml
    jakarta/commons/sandbox/js2j/trunk/project.properties
    jakarta/commons/sandbox/js2j/trunk/project.xml

Added: jakarta/commons/sandbox/js2j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/js2j/trunk/pom.xml?rev=425929&view=auto
==============================================================================
--- jakarta/commons/sandbox/js2j/trunk/pom.xml (added)
+++ jakarta/commons/sandbox/js2j/trunk/pom.xml Wed Jul 26 19:01:57 2006
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Copyright 2005-2006 The Apache Software Foundation
+
+   Licensed 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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+  <name>JS2J</name>
+  <groupId>commons-js2j</groupId>
+  <artifactId>commons-js2j</artifactId>
+  <version>0.1-SNAPSHOT</version>
+
+  <inceptionYear>2006</inceptionYear>
+  <description>A set of Javascript extensions to better integrate with Java</description>
+
+  <url>http://jakarta.apache.org/commons/sandbox/js2j/</url>
+
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://jakarta.apache.org</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>/LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/js2j/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/js2j/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/jakarta/commons/sandbox/js2j/trunk</url>
+  </scm>
+
+  <mailingLists>
+    <mailingList>
+      <name>Commons Dev List</name>
+      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Commons User List</name>
+      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <name>Don Brown</name>
+      <id>mrdon</id>
+      <email>mrdon AT apache.org</email>
+      <organization>Apache Software Foundation</organization>
+    </developer>
+  </developers>
+
+  <dependencies>
+    <dependency>
+      <groupId>rhino</groupId>
+      <artifactId>js</artifactId>
+      <version>1.6R2</version>
+    </dependency>
+   <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-el</groupId>
+      <artifactId>commons-el</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src/main/java</sourceDirectory>
+    <testSourceDirectory>src/test/java</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>.</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <includes>
+          <include>**/*.xml</include>
+          <include>**/*.gif</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>



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


Re: svn commit: r425929 - in /jakarta/commons/sandbox/js2j/trunk: maven.xml pom.xml project.properties project.xml src/ src/main/ src/main/java/ src/main/java/org/

Posted by Rahul Akolkar <ra...@gmail.com>.
On 7/27/06, Don Brown <do...@gmail.com> wrote:
> I suppose so, however, I stole that pom from scxml, so perhaps that
> one should be fixed too.
>
<snip/>

There are two reasons why you still see the old-school groupId in [scxml]:

 * Relocation of existing Commons artifacts to use the new groupId
will probably need more time (there were some experiments, but nothing
conclusive, AFAIK)

 * The relocation should happen with all of Commons as a whole, rather
than, say [scxml] starting off with a separate groupId than the rest
of the Commons' released artifacts.

-Rahul


> Don
>
> On 7/26/06, Wendy Smoak <ws...@gmail.com> wrote:
> > Should the groupId be org.apache.commons instead?
> >
> > --
> > Wendy
> >
<snap/>

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


Re: svn commit: r425929 - in /jakarta/commons/sandbox/js2j/trunk: maven.xml pom.xml project.properties project.xml src/ src/main/ src/main/java/ src/main/java/org/

Posted by Don Brown <do...@gmail.com>.
I suppose so, however, I stole that pom from scxml, so perhaps that
one should be fixed too.

Don

On 7/26/06, Wendy Smoak <ws...@gmail.com> wrote:
> Should the groupId be org.apache.commons instead?
>
> --
> Wendy
>
> On 7/26/06, mrdon@apache.org <mr...@apache.org> wrote:
> > Author: mrdon
> > Date: Wed Jul 26 19:01:57 2006
> > New Revision: 425929
> >
> > URL: http://svn.apache.org/viewvc?rev=425929&view=rev
> > Log:
> > Adding Maven 2 build, seeding code from Struts flow
> ...
> > Added: jakarta/commons/sandbox/js2j/trunk/pom.xml
> > URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/js2j/trunk/pom.xml?rev=425929&view=auto
> ...
> > +  <modelVersion>4.0.0</modelVersion>
> > +  <name>JS2J</name>
> > +  <groupId>commons-js2j</groupId>
> > +  <artifactId>commons-js2j</artifactId>
> > +  <version>0.1-SNAPSHOT</version>
>
> ---------------------------------------------------------------------
> 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


Re: svn commit: r425929 - in /jakarta/commons/sandbox/js2j/trunk: maven.xml pom.xml project.properties project.xml src/ src/main/ src/main/java/ src/main/java/org/

Posted by Wendy Smoak <ws...@gmail.com>.
Should the groupId be org.apache.commons instead?

-- 
Wendy

On 7/26/06, mrdon@apache.org <mr...@apache.org> wrote:
> Author: mrdon
> Date: Wed Jul 26 19:01:57 2006
> New Revision: 425929
>
> URL: http://svn.apache.org/viewvc?rev=425929&view=rev
> Log:
> Adding Maven 2 build, seeding code from Struts flow
...
> Added: jakarta/commons/sandbox/js2j/trunk/pom.xml
> URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/js2j/trunk/pom.xml?rev=425929&view=auto
...
> +  <modelVersion>4.0.0</modelVersion>
> +  <name>JS2J</name>
> +  <groupId>commons-js2j</groupId>
> +  <artifactId>commons-js2j</artifactId>
> +  <version>0.1-SNAPSHOT</version>

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