You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2006/06/07 10:50:17 UTC

svn commit: r412330 - in /incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher: .classpath pom.xml src/main/resources/ src/main/resources/META-INF/ src/main/resources/META-INF/MANIFEST.MF

Author: aadamchik
Date: Wed Jun  7 01:50:17 2006
New Revision: 412330

URL: http://svn.apache.org/viewvc?rev=412330&view=rev
Log:
adding manifest file

Added:
    incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/
    incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/
    incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/MANIFEST.MF
Modified:
    incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/.classpath
    incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/pom.xml

Modified: incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/.classpath
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/.classpath?rev=412330&r1=412329&r2=412330&view=diff
==============================================================================
--- incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/.classpath (original)
+++ incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/.classpath Wed Jun  7 01:50:17 2006
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" path="src/main/resources"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/classes"/>

Modified: incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/pom.xml?rev=412330&r1=412329&r2=412330&view=diff
==============================================================================
--- incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/pom.xml (original)
+++ incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/pom.xml Wed Jun  7 01:50:17 2006
@@ -14,6 +14,19 @@
     <version>3.0-SNAPSHOT</version>
     <name>CayenneModeler Plugin Launcher</name>
     
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
     <dependencies>
         <dependency>
             <groupId>org.platonos</groupId>

Added: incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/MANIFEST.MF?rev=412330&view=auto
==============================================================================
--- incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/MANIFEST.MF (added)
+++ incubator/cayenne/main/branches/PROTO-3.0/modeler/modeler-launcher/src/main/resources/META-INF/MANIFEST.MF Wed Jun  7 01:50:17 2006
@@ -0,0 +1,2 @@
+Main-Class: org.apache.cayenne.modeler.launcher.Launcher
+Class-Path: plugin-engine-1.1-SNAPSHOT.jar
\ No newline at end of file