Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Aug 28, 2012
1 parent f2c7ead commit 4a76e8d
Showing 1 changed file with 89 additions and 47 deletions.
136 changes: 89 additions & 47 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,32 @@
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-tools-anno</artifactId>
<version>1.4.1</version>
<scope>runtime</scope>
</dependency>


<dependency>
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-anno</artifactId>
<version>1.4.1</version>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>2.1</version>
</dependency>


</dependencies>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.9</version>
<dependencies>

<dependency>
<groupId>org.jfrog.maven.annomojo</groupId>
<artifactId>maven-plugin-tools-anno</artifactId>
Expand All @@ -59,6 +68,15 @@
</dependency>

</dependencies>

<configuration>
<extractors>
<extractor>javaanno</extractor>
</extractors>

</configuration>


</plugin>

<plugin>
Expand All @@ -71,61 +89,26 @@
</configuration>
</plugin>


<!--
=======================
CONFLUENCE REPORT
=======================
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-confluence-reporting-plugin</artifactId>
<version>3.2.3</version>
<reportSets>
<reportSet>
<id>confluence</id>
<configuration>
<endPoint>${confluence.home}/rpc/xmlrpc</endPoint>
<serverId>confluence-server</serverId>
<spaceKey>DEV</spaceKey>
<parentPageTitle>Plugin</parentPageTitle>
<properties>
<release>${project.version}</release>
</properties>
<labels>
<label>maven</label>
<label>deploy</label>
</labels>
</configuration>
<reports>
<report>confluence-summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</reportPlugins>
</configuration>
</plugin>
-->
</plugins>

</build>


<repositories>
<repository>
<id>jfrog</id>
<url>http://www.jfrog.org/artifactory/plugins-releases</url>
<url>http://repo.jfrog.org/artifactory/plugins-releases/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>jfrog-plugins</id>
<name>jfrog-plugins-dist</name>
<url>http://repo.jfrog.org/artifactory/plugins-releases</url>
</pluginRepository>
</pluginRepositories>

<distributionManagement>
<repository>
<id>${release.repo.id}</id>
Expand All @@ -136,5 +119,64 @@ CONFLUENCE REPORT
<url>${snapshot.repo.url}</url>
</snapshotRepository>
</distributionManagement>



<profiles>
<profile>
<id>softphone</id>
<build>
<plugins>

<!--
=======================
CONFLUENCE REPORT
=======================
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-confluence-reporting-plugin</artifactId>
<version>3.2.3</version>
<reportSets>
<reportSet>
<id>confluence</id>
<configuration>
<endPoint>${confluence.home}/rpc/xmlrpc</endPoint>
<serverId>softphone-server</serverId>
<spaceKey>DEV</spaceKey>
<parentPageTitle>Plugin</parentPageTitle>
<properties>
<release>${project.version}</release>
</properties>
<labels>
<label>maven</label>
<label>deploy</label>
</labels>

</configuration>
<reports>
<report>confluence-summary</report>
</reports>
</reportSet>
</reportSets>

</plugin>
</reportPlugins>
</configuration>
</plugin>


</plugins>


</build>

</profile>

</profiles>
</project>

0 comments on commit 4a76e8d

Please sign in to comment.