-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reuse the pom from last maven release (1.0.6) + adapt to github
- Loading branch information
Tony CHEMIT
committed
May 23, 2014
1 parent
cfa11de
commit 72991d4
Showing
1 changed file
with
162 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,171 @@ | ||
<?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"> | ||
<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> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<name>YamlBeans</name> | ||
<groupId>com.esotericsoftware.yamlbeans</groupId> | ||
<artifactId>yamlbeans</artifactId> | ||
<version>1.05</version> | ||
<name>YamlBeans</name> | ||
<groupId>com.esotericsoftware.yamlbeans</groupId> | ||
<artifactId>yamlbeans</artifactId> | ||
<version>1.0.7.1</version> | ||
|
||
<packaging>jar</packaging> | ||
<description>Java object graphs, to and from YAML</description> | ||
<url>http://code.google.com/p/yamlbeans</url> | ||
<description>Java object graphs, to and from YAML</description> | ||
<url>https://github.com/EsotericSoftware/yamlbeans</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>New BSD License</name> | ||
<url>http://www.opensource.org/licenses/bsd-license.php</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>http://code.google.com/p/yamlbeans/source/browse/</url> | ||
<connection>http://yamlbeans.googlecode.com/svn</connection> | ||
</scm> | ||
<licenses> | ||
<license> | ||
<name>New BSD License</name> | ||
<url>http://www.opensource.org/licenses/bsd-license.php</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>scm:git:[email protected]:tchemit/yamlbeans.git</url> | ||
<connection>scm:git:[email protected]:tchemit/yamlbeans.git</connection> | ||
<developerConnection>scm:git:[email protected]:tchemit/yamlbeans.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<scope>test</scope> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<dependency> | ||
<scope>test</scope> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
<outputDirectory>target/classes</outputDirectory> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.5</source> | ||
<target>1.5</target> | ||
<encoding>UTF-8</encoding> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<properties> | ||
|
||
<!-- default encoding --> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
||
<java.version>1.5</java.version> | ||
</properties> | ||
|
||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
<outputDirectory>target/classes</outputDirectory> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>2.6</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.12.4</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.5.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.2.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.9</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.4</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.7</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.nuiton</groupId> | ||
<artifactId>helper-maven-plugin</artifactId> | ||
<version>2.0</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
</build> | ||
|
||
<developers> | ||
<developer> | ||
<id>nathansweet</id> | ||
<name>Nathan Sweet</name> | ||
<email>[email protected]</email> | ||
<organization>Esoteric Software</organization> | ||
<organizationUrl>http://esotericsoftware.com</organizationUrl> | ||
<roles> | ||
<role>author</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<contributors> | ||
<contributor> | ||
<name>Tony Chemit</name> | ||
<email>chemit at codelutin dot com</email> | ||
<organization>CodeLutin</organization> | ||
<organizationUrl>http://codelutin.com</organizationUrl> | ||
<timezone>Europe/Paris</timezone> | ||
<roles> | ||
<role>Maven packager</role> | ||
</roles> | ||
</contributor> | ||
</contributors> | ||
|
||
<profiles> | ||
<profile> | ||
<id>release-sign-artifacts</id> | ||
<activation> | ||
<property> | ||
<name>performRelease</name> | ||
<value>true</value> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.nuiton</groupId> | ||
<artifactId>helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>get-pgp-passphrase</id> | ||
<goals> | ||
<goal>share-server-secret</goal> | ||
</goals> | ||
<phase>verify</phase> | ||
<configuration> | ||
<serverId>${gpg.serverId}</serverId> | ||
<usernameOut>gpg.keyname</usernameOut> | ||
<passwordOut>gpg.passphrase</passwordOut> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<developers> | ||
<developer> | ||
<id>nathansweet</id> | ||
<name>Nathan Sweet</name> | ||
<email>[email protected]</email> | ||
<organization>Esoteric Software</organization> | ||
<organizationUrl>http://esotericsoftware.com</organizationUrl> | ||
<roles> | ||
<role>author</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
</project> |