Skip to Content.
Sympa Menu

perfsonar-dev - [pS-dev] [GEANT/SA2/ps-java-services] r5836 - trunk/perfsonar-project-settings

Subject: perfsonar development work

List archive

[pS-dev] [GEANT/SA2/ps-java-services] r5836 - trunk/perfsonar-project-settings


Chronological Thread 
  • From:
  • To:
  • Subject: [pS-dev] [GEANT/SA2/ps-java-services] r5836 - trunk/perfsonar-project-settings
  • Date: Wed, 21 Sep 2011 12:55:55 +0100 (BST)

Author: psnc.kupinski
Date: 2011-09-21 12:55:55 +0100 (Wed, 21 Sep 2011)
New Revision: 5836

Added:
trunk/perfsonar-project-settings/pom.xml
Log:
uploaded parent POM for all SDS2011 projects

Added: trunk/perfsonar-project-settings/pom.xml
===================================================================
--- trunk/perfsonar-project-settings/pom.xml (rev
0)
+++ trunk/perfsonar-project-settings/pom.xml 2011-09-21 11:55:55 UTC (rev
5836)
@@ -0,0 +1,235 @@
+<?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/xsd/maven-4.0.0.xsd";>
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>net.geant.perfsonar</groupId>
+ <artifactId>perfsonar-project-settings</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <name>Settings for all perfSONAR projects</name>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+
+ <repositories>
+ <repository>
+ <id>geant-maven-repo</id>
+ <url>http://maven.geant.net/repo/</url>
+ </repository>
+ <repository>
+ <id>geant-snapshot-repository</id>
+ <url>http://maven.geant.net/snapshots-repo/</url>
+ </repository>
+ <repository>
+ <id>fuse-repo</id>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <name>fuse-repo</name>
+ <url>http://repo.fusesource.com/nexus/content/groups/public</url>
+ </repository>
+ </repositories>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-ssh-external</artifactId>
+ <version>1.0-beta-6</version>
+ </extension>
+ </extensions>
+
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <proc>none</proc>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>2.3.5</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <downloadSources>true</downloadSources>
+
<eclipse.useProjectReferences>true</eclipse.useProjectReferences>
+ <downloadJavadocs>true</downloadJavadocs>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.5</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.7</version>
+ <executions>
+ <execution>
+ <id>add generated sources to sources directory</id>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+
<source>${project.build.directory}/generated-sources/annotations</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>generate sources from annotations</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ <configuration>
+ <proc>only</proc>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <configuration>
+ <instructions>
+
<Private-Package>net.geant.perfsonar.sample</Private-Package>
+ <Import-Package>META-INF.cxf,
+ META-INF.cxf-osgi,
+ javax.jws,
+ javax.wsdl,
+ javax.xml.namespace,
+ org.apache.cxf.bus,
+
org.apache.cxf.bus.resource,
+
org.apache.cxf.bus.spring,
+
org.apache.cxf.configuration.spring,
+
org.apache.cxf.resource,
+
org.apache.cxf.transport.http,
+
org.apache.servicemix.util,
+
org.springframework.beans.factory.config,
+ javax.xml.bind,
+
javax.xml.bind.annotation,
+ javax.xml.soap,
+ javax.xml.ws,
+ javax.persistence,
+
org.apache.servicemix.common.osgi,
+ javax.sql,
+ org.hsqldb,
+ org.hsqldb.util,
+ org.hsqldb.jdbc,
+ org.hibernate.ejb,
+ org.hibernate.proxy,
+ org.hibernate.hql.ast,
+ javassist.util.proxy,
+
org.apache.commons.dbcp,
+
org.springframework.orm.jpa,
+
org.springframework.orm.jpa.vendor,
+
org.springframework.transaction.support,
+
org.apache.camel.spring.util,*
+ </Import-Package>
+
<Require-Bundle>org.apache.cxf.bundle</Require-Bundle>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.9</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>net.geant.perfsonar</groupId>
+ <artifactId>perfsonar-base</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>net.geant.perfsonar</groupId>
+ <artifactId>perfsonar-base3-persistence</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate.javax.persistence</groupId>
+ <artifactId>hibernate-jpa-2.0-api</artifactId>
+ <version>1.0.1.Final</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>net.geant.perfsonar</groupId>
+ <artifactId>perfsonar-apt</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+
+
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
+ <version>1.1.3</version>
+ <type>bundle</type>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.servicemix</groupId>
+ <artifactId>servicemix-utils</artifactId>
+ <version>1.4.0</version>
+ <type>bundle</type>
+ </dependency>
+ <dependency>
+ <groupId>org.hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>2.2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>net.geant.perfsonar</groupId>
+ <artifactId>perfsonar-base-api</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ <type>bundle</type>
+ </dependency>
+ </dependencies>
+ <distributionManagement>
+ <repository>
+ <id>geant-repository</id>
+
<url>scpexe:///repo</url>
+ <uniqueVersion>false</uniqueVersion>
+ </repository>
+ <snapshotRepository>
+ <id>geant-snapshot-repository</id>
+
<url>scpexe:///snapshots-repo</url>
+ <uniqueVersion>false</uniqueVersion>
+ </snapshotRepository>
+
+ </distributionManagement>
+</project>
\ No newline at end of file



  • [pS-dev] [GEANT/SA2/ps-java-services] r5836 - trunk/perfsonar-project-settings, svn-noreply, 09/21/2011

Archive powered by MHonArc 2.6.16.

Top of Page