Skip to content

Instantly share code, notes, and snippets.

@charyorde
Created May 26, 2014 07:41
Show Gist options
  • Save charyorde/12560b085c38f24ffac6 to your computer and use it in GitHub Desktop.
Save charyorde/12560b085c38f24ffac6 to your computer and use it in GitHub Desktop.
yookos utils pom
<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>com.yookos.utils</groupId>
<artifactId>yookos-utils</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>yookos-utils</name>
<url>http://maven.apache.org</url>
<properties>
<jive.version>6.0.0.0_RC8</jive.version>
<!--eae.version>3.2.0.20</eae.version-->
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file:///Users/libs/yookos/mvn-repo</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugins</artifactId>
<version>2.11</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>1.0-beta-2</version>
</plugin>
</plugins>
</build>
<dependencies>
<!--dependency>
<groupId>eae.core</groupId>
<artifactId>eae-service</artifactId>
<version>${eae.version}</version>
</dependency-->
<dependency>
<groupId>com.jivesoftware</groupId>
<artifactId>jive-core</artifactId>
<version>${jive.version}</version>
</dependency>
<dependency>
<groupId>eae.shared</groupId>
<artifactId>eae-constants</artifactId>
<version>3.1.0.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>internal</id>
<properties>
<license>internal</license>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>external</id>
<properties>
<license>external</license>
</properties>
</profile>
</profiles>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment