Initial structure
authorMathieu Baudier <mbaudier@argeo.org>
Wed, 9 Sep 2009 15:14:11 +0000 (15:14 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Wed, 9 Sep 2009 15:14:11 +0000 (15:14 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@2889 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

.project [new file with mode: 0644]
pom.xml [new file with mode: 0644]
server/modules/pom.xml [new file with mode: 0644]
server/pom.xml [new file with mode: 0644]

diff --git a/.project b/.project
new file mode 100644 (file)
index 0000000..e2ee173
--- /dev/null
+++ b/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>org.argeo.commons</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+       </buildSpec>
+       <natures>
+       </natures>
+</projectDescription>
diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..c8d8e63
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,136 @@
+<?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">
+       <modelVersion>4.0.0</modelVersion>
+       <groupId>org.argeo.commons</groupId>
+       <version>0.1.1-SNAPSHOT</version>
+       <artifactId>argeo-commons</artifactId>
+       <name>Argeo Commons</name>
+       <packaging>pom</packaging>
+       <properties>
+               <version.slc>0.12.1-SNAPSHOT</version.slc>
+       </properties>
+       <modules>
+               <module>server</module>
+       </modules>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.5</source>
+                                       <target>1.5</target>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>attach-sources</id>
+                                               <phase>package</phase>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencyManagement>
+               <dependencies>
+                       <dependency>
+                               <groupId>org.argeo.slc</groupId>
+                               <artifactId>argeo-slc</artifactId>
+                               <version>${version.slc}</version>
+                               <type>pom</type>
+                               <scope>import</scope>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
+       <repositories>
+               <repository>
+                       <id>central</id>
+                       <url>http://repo1.maven.org/maven2</url>
+                       <releases>
+                               <enabled>true</enabled>
+                               <updatePolicy>daily</updatePolicy>
+                               <checksumPolicy>warn</checksumPolicy>
+                       </releases>
+                       <snapshots>
+                               <enabled>false</enabled>
+                               <updatePolicy>never</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </snapshots>
+               </repository>
+               <repository>
+                       <id>com.springsource.repository.bundles.release</id>
+                       <name>
+                               SpringSource Enterprise Bundle Repository - SpringSource
+                               Bundle Releases
+                       </name>
+                       <url>
+                               http://repository.springsource.com/maven/bundles/release
+                       </url>
+                       <releases>
+                               <enabled>true</enabled>
+                               <updatePolicy>daily</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </releases>
+                       <snapshots>
+                               <enabled>false</enabled>
+                               <updatePolicy>never</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </snapshots>
+               </repository>
+               <repository>
+                       <id>com.springsource.repository.bundles.external</id>
+                       <name>
+                               SpringSource Enterprise Bundle Repository - External
+                               Bundle Releases
+                       </name>
+                       <url>
+                               http://repository.springsource.com/maven/bundles/external
+                       </url>
+                       <releases>
+                               <enabled>true</enabled>
+                               <updatePolicy>daily</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </releases>
+                       <snapshots>
+                               <enabled>false</enabled>
+                               <updatePolicy>never</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </snapshots>
+               </repository>
+               <repository>
+                       <id>argeo</id>
+                       <url>http://www.argeo.org/maven/argeo</url>
+                       <releases>
+                               <enabled>true</enabled>
+                               <updatePolicy>daily</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </releases>
+                       <snapshots>
+                               <enabled>false</enabled>
+                               <updatePolicy>never</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </snapshots>
+               </repository>
+               <repository>
+                       <id>argeo-snapshots</id>
+                       <url>http://www.argeo.org/maven/argeo-snapshots</url>
+                       <releases>
+                               <enabled>false</enabled>
+                               <updatePolicy>never</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </releases>
+                       <snapshots>
+                               <enabled>true</enabled>
+                               <updatePolicy>always</updatePolicy>
+                               <checksumPolicy>fail</checksumPolicy>
+                       </snapshots>
+               </repository>
+       </repositories>
+</project>
\ No newline at end of file
diff --git a/server/modules/pom.xml b/server/modules/pom.xml
new file mode 100644 (file)
index 0000000..17b70b4
--- /dev/null
@@ -0,0 +1,15 @@
+<?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">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.commons</groupId>
+               <version>0.1.1-SNAPSHOT</version>
+               <artifactId>server</artifactId>
+               <relativePath>..</relativePath>
+       </parent>
+       <groupId>org.argeo.commons.server</groupId>
+       <artifactId>modules</artifactId>
+       <name>Commons Server Modules</name>
+       <packaging>pom</packaging>
+</project>
\ No newline at end of file
diff --git a/server/pom.xml b/server/pom.xml
new file mode 100644 (file)
index 0000000..57d13d1
--- /dev/null
@@ -0,0 +1,17 @@
+<?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">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.commons</groupId>
+               <version>0.1.1-SNAPSHOT</version>
+               <artifactId>argeo-commons</artifactId>
+               <relativePath>..</relativePath>
+       </parent>
+       <artifactId>server</artifactId>
+       <name>Commons Server</name>
+       <packaging>pom</packaging>
+       <modules>
+               <module>modules</module>
+       </modules>
+</project>
\ No newline at end of file