forked from vert-x/vertx-maven
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added built binaries of patch vert-x#33
- Loading branch information
Krzysztof Makowski
committed
Jul 24, 2014
1 parent
0ada75b
commit 42513b1
Showing
1 changed file
with
138 additions
and
0 deletions.
There are no files selected for viewing
138 changes: 138 additions & 0 deletions
138
...n-plugin/2.0.7-final-kmakowski-patch1/vertx-maven-plugin-2.0.7-final-kmakowski-patch1.pom
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 |
---|---|---|
@@ -0,0 +1,138 @@ | ||
<?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.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>7</version> | ||
</parent> | ||
|
||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-maven-plugin</artifactId> | ||
<version>2.0.7-final-kmakowski-patch1</version> | ||
<packaging>maven-plugin</packaging> | ||
|
||
<name>vertx-maven-plugin</name> | ||
<url>https://github.com/vert-x/vertx-maven</url> | ||
|
||
<developers> | ||
<developer> | ||
<id>rhart</id> | ||
<name>Russell Hart</name> | ||
<email>russellxhart@googlemail.com</email> | ||
</developer> | ||
<developer> | ||
<id>froz3n</id> | ||
<name>Crazy Frozen Penguin</name> | ||
<email>crazy.frozen.penguin@gmail.com</email> | ||
</developer> | ||
<developer> | ||
<id>ramki</id> | ||
<name>ramki</name> | ||
<email>ramki.s@gmail.com</email> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<maven.version>2.2.1</maven.version> | ||
<vertx.version>2.1.1</vertx.version> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<!-- <plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.4</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin>--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.0</version> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>3.2</version> | ||
<configuration> | ||
<goalPrefix>vertx</goalPrefix> | ||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>mojo-descriptor</id> | ||
<phase>process-classes</phase> | ||
<goals> | ||
<goal>descriptor</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<configuration> | ||
<preparationGoals>clean verify install</preparationGoals> | ||
<pushChanges>false</pushChanges> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.plugin-tools</groupId> | ||
<artifactId>maven-plugin-tools-api</artifactId> | ||
<version>3.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.plugin-tools</groupId> | ||
<artifactId>maven-plugin-tools-annotations</artifactId> | ||
<version>3.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-project</artifactId> | ||
<version>2.0.6</version> | ||
</dependency> | ||
|
||
<!-- vertx dependencies --> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-platform</artifactId> | ||
<version>${vertx.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-core</artifactId> | ||
<version>${vertx.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.vertx</groupId> | ||
<artifactId>vertx-hazelcast</artifactId> | ||
<version>${vertx.version}</version> | ||
</dependency> | ||
|
||
<!-- 3rd Party dependencies --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.7.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |