Author: ivol37 at gmail.com Date: Tue Nov 9 13:59:10 2010 New Revision: 275
Log: [AMDATU-129] Added opensocial module Added: trunk/amdatu-opensocial/ trunk/amdatu-opensocial/pom.xml Added: trunk/amdatu-opensocial/pom.xml ============================================================================== --- (empty file) +++ trunk/amdatu-opensocial/pom.xml Tue Nov 9 13:59:10 2010 @@ -0,0 +1,45 @@ +<?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.amdatu</groupId> + <artifactId>amdatu</artifactId> + <version>0.0.6-SNAPSHOT</version> + </parent> + <artifactId>org.amdatu.semanticweb</artifactId> + <name>Amdatu Semantic Web</name> + <description>This module consists of all Semantic Web related bundles</description> + <packaging>pom</packaging> + + <modules> + <module>sesame-application</module> + <module>sparqlendpoint-gadget</module> + </modules> + + <build> + <pluginManagement> + <plugins> + <!-- This plugin ensures that the resulting jar is also copied to the proper target directory, bound to the package + phase --> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <tasks> + <copy file="${project.build.directory}/${project.build.finalName}.jar" todir="${root.directory}/application-bundles" + overwrite="true" /> + </tasks> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </pluginManagement> + </build> +</project> \ No newline at end of file
