]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/pom.xml
[maven-release-plugin] copy for tag argeo-slc-0.13.0
[gpl/argeo-slc.git] / runtime / pom.xml
index 4da5ecec161af1993353fae11360b3fd7b16e2b6..4ca2999440948d71446b74455fb0b0e0b8bb93d4 100644 (file)
@@ -3,7 +3,7 @@
        <parent>
                <groupId>org.argeo.slc</groupId>
                <artifactId>argeo-slc</artifactId>
-               <version>0.11.5-SNAPSHOT</version>
+               <version>0.13.0</version>
                <relativePath>..</relativePath>
        </parent>
        <groupId>org.argeo.slc</groupId>
@@ -11,7 +11,6 @@
        <packaging>pom</packaging>
        <name>SLC Runtime</name>
        <modules>
-               <module>org.argeo.slc.osgiboot</module>
                <module>org.argeo.slc.specs</module>
                <module>org.argeo.slc.core</module>
                <module>org.argeo.slc.unit</module>
                <module>org.argeo.slc.support.ant</module>
                <module>org.argeo.slc.support.maven</module>
                <module>org.argeo.slc.support.jemmy</module>
+               <module>org.argeo.slc.support.jcr</module>
+               <module>org.argeo.slc.support.gis</module>
                <module>org.argeo.slc.server</module>
                <module>org.argeo.slc.detached</module>
                <module>org.argeo.slc.detached.launcher</module>
                <module>org.argeo.slc.launcher</module>
                <module>org.argeo.slc.lib.detached</module>
+               <module>org.argeo.slc.support.ws.client</module>
        </modules>
        <build>
-               <pluginManagement>
-                       <plugins>
-                               <plugin>
-                                       <artifactId>maven-jar-plugin</artifactId>
-                                       <configuration>
-                                               <archive>
-                                                       <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
-                                               </archive>
-                                       </configuration>
-                               </plugin>
-                               <plugin>
-                                       <groupId>org.apache.felix</groupId>
-                                       <artifactId>maven-bundle-plugin</artifactId>
-                                       <version>${version.maven-bundle-plugin}</version>
-                                       <extensions>true</extensions>
-                                       <configuration>
-                                               <manifestLocation>target/classes/META-INF</manifestLocation>
-                                               <instructions>
-                                                       <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
-                                                       <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-                                                       <_removeheaders>Bnd-LastModified</_removeheaders>
-                                               </instructions>
-                                       </configuration>
-                                       <executions>
-                                               <execution>
-                                                       <id>bundle-manifest</id>
-                                                       <phase>process-classes</phase>
-                                                       <goals>
-                                                               <goal>manifest</goal>
-                                                       </goals>
-                                               </execution>
-                                       </executions>
-                               </plugin>
-                       </plugins>
-               </pluginManagement>
+               <resources>
+                       <resource>
+                               <directory>src/main/resources</directory>
+                       </resource>
+                       <resource>
+                               <directory>.</directory>
+                               <includes>
+                                       <include>META-INF/**</include>
+                               </includes>
+                       </resource>
+               </resources>
+               <plugins>
+                       <plugin>
+                               <artifactId>maven-clean-plugin</artifactId>
+                               <configuration>
+                                       <filesets>
+                                               <fileset>
+                                                       <directory>META-INF</directory>
+                                                       <includes>
+                                                               <include>MANIFEST.MF</include>
+                                                       </includes>
+                                               </fileset>
+                                       </filesets>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <configuration>
+                                       <archive>
+                                               <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+                                       </archive>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.felix</groupId>
+                               <artifactId>maven-bundle-plugin</artifactId>
+                               <version>${version.maven-bundle-plugin}</version>
+                               <extensions>true</extensions>
+                               <configuration>
+                                       <manifestLocation>META-INF</manifestLocation>
+                                       <instructions>
+                                               <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
+                                               <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                                               <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
+                                               <_removeheaders>Bnd-LastModified</_removeheaders>
+                                       </instructions>
+                               </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>bundle-manifest</id>
+                                               <phase>process-classes</phase>
+                                               <goals>
+                                                       <goal>manifest</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+               </plugins>
        </build>
-       <!-- 
-       <profiles>
-               <profile>
-                       <id>release</id>
-                       <build>
-                               <plugins>
-                                       <plugin>
-                                               <groupId>org.apache.felix</groupId>
-                                               <artifactId>maven-bundle-plugin</artifactId>
-                                               <version>${version.maven-bundle-plugin}</version>
-                                               <extensions>true</extensions>
-                                               <configuration>
-                                                       <manifestLocation>target/classes/META-INF</manifestLocation>
-                                                       <instructions>
-                                                               <Bundle-Version>${project.version}.r${buildNumber}</Bundle-Version>
-                                                               <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-                                                               <_removeheaders>Bnd-LastModified</_removeheaders>
-                                                       </instructions>
-                                               </configuration>
-                                               <executions>
-                                                       <execution>
-                                                               <id>bundle-manifest</id>
-                                                               <phase>process-classes</phase>
-                                                               <goals>
-                                                                       <goal>manifest</goal>
-                                                               </goals>
-                                                       </execution>
-                                               </executions>
-                                       </plugin>
-                               </plugins>
-                       </build>
-               </profile>
-       </profiles> -->
        <!--
                <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId> </plugin> </plugins>