Add Basic No Deps
authorMathieu Baudier <mbaudier@argeo.org>
Wed, 25 Nov 2009 12:23:53 +0000 (12:23 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Wed, 25 Nov 2009 12:23:53 +0000 (12:23 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@3159 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

basic/runtime/org.argeo.basic.nodeps/.classpath [new file with mode: 0644]
basic/runtime/org.argeo.basic.nodeps/.project [new file with mode: 0644]
basic/runtime/org.argeo.basic.nodeps/.settings/org.eclipse.jdt.core.prefs [new file with mode: 0644]
basic/runtime/org.argeo.basic.nodeps/.settings/org.maven.ide.eclipse.prefs [new file with mode: 0644]
basic/runtime/org.argeo.basic.nodeps/pom.xml [new file with mode: 0644]
basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/ArgeoException.java [new file with mode: 0644]
basic/runtime/pom.xml

diff --git a/basic/runtime/org.argeo.basic.nodeps/.classpath b/basic/runtime/org.argeo.basic.nodeps/.classpath
new file mode 100644 (file)
index 0000000..16f01e2
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+       <classpathentry kind="src" output="target/classes" path="src/main/java"/>
+       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+       <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+       <classpathentry kind="output" path="target/classes"/>
+</classpath>
diff --git a/basic/runtime/org.argeo.basic.nodeps/.project b/basic/runtime/org.argeo.basic.nodeps/.project
new file mode 100644 (file)
index 0000000..e11498f
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>org.argeo.basic.nodeps</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+               <buildCommand>
+                       <name>org.maven.ide.eclipse.maven2Builder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.maven.ide.eclipse.maven2Nature</nature>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+       </natures>
+</projectDescription>
diff --git a/basic/runtime/org.argeo.basic.nodeps/.settings/org.eclipse.jdt.core.prefs b/basic/runtime/org.argeo.basic.nodeps/.settings/org.eclipse.jdt.core.prefs
new file mode 100644 (file)
index 0000000..6faceb2
--- /dev/null
@@ -0,0 +1,5 @@
+#Wed Nov 25 13:22:42 CET 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.source=1.5
diff --git a/basic/runtime/org.argeo.basic.nodeps/.settings/org.maven.ide.eclipse.prefs b/basic/runtime/org.argeo.basic.nodeps/.settings/org.maven.ide.eclipse.prefs
new file mode 100644 (file)
index 0000000..0899280
--- /dev/null
@@ -0,0 +1,9 @@
+#Wed Nov 25 13:22:42 CET 2009
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1
diff --git a/basic/runtime/org.argeo.basic.nodeps/pom.xml b/basic/runtime/org.argeo.basic.nodeps/pom.xml
new file mode 100644 (file)
index 0000000..4b669ff
--- /dev/null
@@ -0,0 +1,41 @@
+<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>
+       <parent>
+               <groupId>org.argeo.commons.basic</groupId>
+               <artifactId>runtime</artifactId>
+               <version>0.1.2-SNAPSHOT</version>
+               <relativePath>..</relativePath>
+       </parent>
+       <artifactId>org.argeo.basic.nodeps</artifactId>
+       <name>Commons Basic No Deps</name>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.felix</groupId>
+                               <artifactId>maven-bundle-plugin</artifactId>
+                               <version>${version.maven-bundle-plugin}</version>
+                               <configuration>
+                                       <instructions>
+                                               <Export-Package>
+                                                       org.argeo.*
+                                               </Export-Package>
+                                       </instructions>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+       </dependencies>
+</project>
diff --git a/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/ArgeoException.java b/basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/ArgeoException.java
new file mode 100644 (file)
index 0000000..28d276f
--- /dev/null
@@ -0,0 +1,21 @@
+package org.argeo;
+
+public class ArgeoException extends RuntimeException {
+       private static final long serialVersionUID = 1L;
+
+       public ArgeoException() {
+       }
+
+       public ArgeoException(String message) {
+               super(message);
+       }
+
+       public ArgeoException(Throwable cause) {
+               super(cause);
+       }
+
+       public ArgeoException(String message, Throwable cause) {
+               super(message, cause);
+       }
+
+}
index bbb91a0706962ef2e35ddc1b49275012948e3cbf..c64126d9039aca54a27afaf1f5f179fa1a80fe52 100644 (file)
@@ -1,5 +1,6 @@
 <?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">
+<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>
        <parent>
                <groupId>org.argeo.commons</groupId>
@@ -12,6 +13,7 @@
        <name>Commons Basic Runtime</name>
        <packaging>pom</packaging>
        <modules>
+               <module>org.argeo.basic.nodeps</module>
                <module>org.argeo.support.junit</module>
        </modules>
 </project>
\ No newline at end of file