Skip to content

Commit

Permalink
Added deployment info to pom.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemmermann committed Dec 6, 2017
1 parent 81c9e03 commit 2120343
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions formsfx-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,30 @@
<version>1.0</version>
</parent>

<distributionManagement>
<repository>
<id>bintray-dlsc-oss-repository</id>
<name>dlsc-oss-repository</name>
<url>https://api.bintray.com/maven/dlsc-oss/repository/FormsFX/;publish=1</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -30,10 +52,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<version>3.0.0-M1</version>
<configuration>
<failOnError>false</failOnError>
<force>true</force>
<windowtitle>FormsFX API</windowtitle>
<aggregate>true</aggregate>
<detectLinks>true</detectLinks>
<links>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
Expand All @@ -55,6 +78,12 @@
<goal>aggregate</goal>
</goals>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

Expand Down

0 comments on commit 2120343

Please sign in to comment.