redmine-java-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode</groupId> <artifactId>redmine-java-api</artifactId> <version>1.10.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <name>Redmine Java API</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <groupId>com.googlecode</groupId> <artifactId>redmine-java-api</artifactId> <version>1.10.0</version> <description>Free open-source Java API for Redmine and Chiliproject bug/task management systems.</description> <url>http://github.com/redminedev/redmine-java-api</url> <scm> <connection>scm:git:git://github.com/redminedev/redmine-java-api.git</connection> <!-- "developerConnection" is required for Maven Release plugin. --> <developerConnection>scm:git:git@github.com:redminedev/redmine-java-api.git</developerConnection> <tag>HEAD</tag> <!-- A publicly browsable repository. For example, via ViewCVS --> <url>http://github.com/redminedev/redmine-java-api/tree/master/</url> </scm> <issueManagement> <system>github</system> <url>http://github.com/redminedev/redmine-java-api/issues</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Alexey Skorokhodov</name> <email>alskor@gmail.com</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- to generate Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <excludePackageNames>org.redmine.ta.internal</excludePackageNames> </configuration> <!-- run this goal when "package" command is executed --> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>javadoc</goal> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- create JAR with sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.0.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> </dependencies> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <!-- Sign the artifacts with GPG before uploading to Sonatype OSS, otherwise Sonatype won't let you release them. --> <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> </plugins> </build> </profile> </profiles> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>false</uniqueVersion> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> </project>