devtools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>info.mikaelsvensson.devtools</groupId>
<artifactId>devtools</artifactId>
<version>1.2.2</version>
</dependency><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>
<modules>
<module>analysis</module>
</modules>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>info.mikaelsvensson.devtools</groupId>
<artifactId>devtools</artifactId>
<packaging>pom</packaging>
<version>1.2.2</version>
<name>Development Tools</name>
<url>http://devtools.mikaelsvensson.info</url>
<description>These are some simple tools aimed as aiding developers with tasks such as extracting information from
Javadoc and performing server log analysis.
</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<!--<distribution>repo</distribution>-->
</license>
</licenses>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<downloadUrl>https://github.com/mikaelsvensson/devtools/downloads</downloadUrl>
<site>
<id>mikaelsvensson-devtools</id>
<url>ftp://ftp.mikaelsvensson.info/devtools</url>
</site>
</distributionManagement>
<scm>
<connection>scm:git:git@github.com:mikaelsvensson/devtools.git</connection>
<developerConnection>scm:git:git@github.com:mikaelsvensson/devtools.git</developerConnection>
<url>git@github.com:mikaelsvensson/devtools.git</url>
<tag>1.2.2</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/mikaelsvensson/devtools/issues</url>
</issueManagement>
<properties>
<github.global.server>github</github.global.server>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<release.arguments />
</properties>
<developers>
<developer>
<name>Mikael Svensson</name>
<email>info@mikaelsvensson.info</email>
<roles>
<role>Developer</role>
<role>Release Manager</role>
</roles>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-velocity-tools</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.13</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-doxia-tools</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<version>5.0-2</version>
</dependency>
<dependency>
<groupId>com.google.code.javaparser</groupId>
<artifactId>javaparser</artifactId>
<version>1.0.8</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.4</version>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
</dependencyManagement>
<!--
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
-->
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<!--
https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven:
Because maven-release-plugin will start a new Maven instance, -Dgpg.passphrase=PASSPHRASE won't work in
this case, instead, you should use "mvn release:perform -Darguments=-Dgpg.passphrase=PASSPHRASE".
If you are releasing your artifacts on OSSRH, you need to make one more configuration change. Because of
the way the maven-release-plugin is configured in the OSS parent POM, you will have to edit the
<pluginManagement> block of the <build> section of your POM so that it overrides the parent POM and
honors the arguments you are passing in.
-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<pushChanges>false</pushChanges>
<arguments>${release.arguments} -Psonatype-oss-release,release-modules,sign-artifacts
</arguments>
<!-- sonatype-oss-release? -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
</plugin>
<!--
<plugin>
</plugin>
<plugin>
</plugin>
<plugin>
</plugin>
<plugin>
</plugin>
<plugin>
</plugin>
<plugin>
</plugin>
-->
<plugin>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!--
<plugin>
<groupId>info.mikaelsvensson.devtools</groupId>
<version>1.1-SNAPSHOT</version>
<artifactId>site-search</artifactId>
<executions>
<execution>
<goals>
<goal>sitesearch</goal>
</goals>
<phase>post-site</phase>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-velocity-tools</artifactId>
<version>1.1.0</version>
</dependency>
<!-- Reflow skin requires Velocity >= 1.7 -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
</dependencies>
<configuration>
<stagingSiteURL>ftp://ftp.mikaelsvensson.info/devtools</stagingSiteURL>
<stagingDirectory>D:/Dokument/Utveckling/devtools/target/staging</stagingDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>com.github.github</groupId>
<artifactId>downloads-maven-plugin</artifactId>
<version>0.6</version>
<executions>
<execution>
<goals>
<goal>upload</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
<configuration>
<description>${project.version} release of ${project.name}</description>
<override>true</override>
<includeAttached>false</includeAttached>
</configuration>
</plugin>
-->
</plugins>
</build>
<profiles>
<profile>
<!--
When doing a release using the release:perform goal it includes publishing the project documentation and it
is unnecessary to include documentation for modules which are not "production ready". Actually, deploying
any artifacts for such modules is unnecessary.
-->
<id>release-modules</id>
<!--
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
-->
<modules>
<module>doclet</module>
<module>analysis</module>
</modules>
</profile>
<profile>
<!--
All modules included by default. This ensures that the release:prepare goal for maven-release-plugin updates
the version numbers for all modules.
-->
<id>all-modules</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>report</module>
<module>site-map-generator-demo</module>
<module>doclet</module>
<module>devtools-skin</module>
<module>site-search</module>
<module>common</module>
</modules>
</profile>
<profile>
<id>sign-artifacts</id>
<!--
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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>
<profile>
<id>sonatype-nexus-staging-repo</id>
<repositories>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</repositories>
</profile>
<profile>
<id>deploy-mikaelsvensson</id>
<distributionManagement>
<repository>
<id>mikaelsvensson-devtools</id>
<url>ftp://ftp.mikaelsvensson.info/devtools/repository/releases</url>
</repository>
<snapshotRepository>
<id>mikaelsvensson-devtools</id>
<url>ftp://ftp.mikaelsvensson.info/devtools/repository/snapshots</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
<!-- Force specific URL to prevent the plugin to add module names to the default URL. -->
<webAccessUrl>https://github.com/mikaelsvensson/devtools</webAccessUrl>
<anonymousConnection>scm:git:git@github.com:mikaelsvensson/devtools.git</anonymousConnection>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>modules</report>
<!--<report>distribution-management</report>-->
<report>scm</report>
<report>issue-tracking</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!--
<plugin>
<groupId>info.mikaelsvensson.devtools</groupId>
<version>1.0-SNAPSHOT</version>
<artifactId>report</artifactId>
<reportSets>
<reportSet>
<reports>
<report>sitemap</report>
</reports>
</reportSet>
</reportSets>
</plugin>
-->
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
-->
</plugins>
</reporting>
</project>