Skip to content

Commit

Permalink
publish on maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
lusoalex committed Dec 23, 2016
1 parent 83d22ff commit 08db87a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 20 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ test-output
test-results
test-tmp
*.class
.vertx
.vertx
release.properties
44 changes: 25 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,35 @@
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>

<parent>
<groupId>com.github.lusoalex</groupId>
<artifactId>lusoalex-parent</artifactId>
<version>0.1</version>
</parent>

<groupId>com.github.lusoalex</groupId>
<artifactId>vertx-jolt</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1-SNAPSHOT</version>

<name>vertx-jolt</name>
<description>This is a json to json transformation tool for vert.x. It use original com.bazaarvoice.jolt:jolt as a proxy.</description>
<url>https://github.com/lusoalex/vertx-jolt</url>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<scm>
<url>https://github.com/lusoalex/vertx-jolt</url>
<connection>https://github.com/lusoalex/vertx-jolt.git</connection>
<developerConnection>scm:git:https://github.com/lusoalex/vertx-jolt.git</developerConnection>
</scm>

<properties>
<java.version>1.8</java.version>
<vertx.version>3.3.3</vertx.version>
</properties>

Expand Down Expand Up @@ -40,21 +63,4 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>
-Xlint:deprecation
</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 08db87a

Please sign in to comment.