pom.xml 3.66 KiB
<?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>com.messners</groupId>
	<artifactId>gitlab-api</artifactId>
	<packaging>jar</packaging>
	<version>1.0-SNAPSHOT</version>
	<name>gitlab-api</name>
    <licenses>
        <license>
            <name>The MIT License (MIT)</name>
            <url>http://opensource.org/licenses/MIT</url>
            <distribution>repo</distribution>
        </license>
    </licenses>	
    <developers>
        <developer>
            <id>gmessner</id>
            <name>Greg Messner</name>
            <email>greg@messners.com</email>
        </developer>
    </developers>
	<properties>
		<jersey.version>1.18</jersey.version>
		<jackson.version>1.9.13</jackson.version>
		<junit.version>4.9</junit.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<scm>
		<url>git@github.com:gmessner/gitlab-api.git</url>
  		<connection>scm:git:git@github.com:gmessner/gitlab-api.git</connection>
  		<developerConnection>scm:git:git@github.com:gmessner/gitlab-api.git</developerConnection>
	</scm>
	<build>
		<defaultGoal>package</defaultGoal>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.2.2</version>
				<configuration>
					<!-- Whether to allow timestamped SNAPSHOT dependencies. 'true' means 
						the release plugin will continue to operate even when a project has dependencies 
						on SNAPSHOTs (which is normally not the case) -->
					<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
					<localCheckout>true</localCheckout>
					<checkModificationExcludes>
						<checkModificationExclude>build-number.txt</checkModificationExclude>
					</checkModificationExcludes>
				</configuration>
			</plugin>
	        <plugin>
    	        <artifactId>maven-scm-plugin</artifactId>
        	    <version>1.8.1</version>
            	<configuration>
                	<tag>${project.artifactId}-${project.version}</tag>
            	</configuration>
        	</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.5.1</version>
				<configuration>
					<source>1.6</source>
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
<target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>test</scope> </dependency> </dependencies> </project>