redmine-java-api-nodep
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.stephenc.connectors</groupId> <artifactId>redmine-java-api-nodep</artifactId> <version>1.15.0</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>7</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.github.stephenc.connectors</groupId> <artifactId>redmine-java-api-nodep</artifactId> <name>Redmine Java API No Deps</name> <version>1.15.0</version> <description>Free open-source Java API for Redmine and Chiliproject bug/task management systems.</description> <url>http://stephenc.github.com/redmine-java-api-nodeps</url> <prerequisites> <maven>2.2.1</maven> </prerequisites> <issueManagement> <system>github</system> <url>http://github.com/stephenc/redmine-java-api-nodep/issues</url> </issueManagement> <developers> <developer> <name>Stephen Connolly</name> </developer> </developers> <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> <scm> <connection>scm:git:git://github.com/stephenc/redmine-java-api-nodep.git</connection> <developerConnection>scm:git:git@github.com:stephenc/redmine-java-api-nodep.git</developerConnection> <url>http://github.com/stephenc/redmine-java-api-nodep/tree/master/</url> </scm> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0.1</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.12</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <dependencies> <dependency> <groupId>com.github.stephenc.wagon</groupId> <artifactId>wagon-gitsite</artifactId> <version>0.4.1</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <forceCreation>true</forceCreation> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <relocations> <relocation> <pattern>org.json</pattern> <shadedPattern>org.redmine.ta.internal.shaded.org.json</shadedPattern> </relocation> <relocation> <pattern>org.apache.http</pattern> <shadedPattern>org.redmine.ta.internal.shaded.org.apache.http</shadedPattern> </relocation> </relocations> <artifactSet> <excludes> <exclude>org.slf4j:slf4j-api</exclude> </excludes> </artifactSet> <promoteTransitiveDependencies>true</promoteTransitiveDependencies> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version> <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message> </requireMavenVersion> <requireMavenVersion> <version>(,3.0),[3.0.4,)</version> <message>Maven 3.0 through 3.0.3 inclusive do not pass correct settings.xml to Maven Release Plugin.</message> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.1</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <site> <id>github.com</id> <url>gitsite:git@github.com/stephenc/redmine-java-api-nodep.git</url> </site> </distributionManagement> <properties> <project.build.outputEncoding>UTF-8</project.build.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>