mantis-java-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.taskadapter</groupId> <artifactId>mantis-java-api</artifactId> <version>0.0.5</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> <name>Mantis Java API</name> <groupId>com.taskadapter</groupId> <artifactId>mantis-java-api</artifactId> <version>0.0.5</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <description>Free open-source Java API for Mantis bug/task management systems.</description> <url>https://github.com/taskadapter/mantis-java-api</url> <scm> <connection>scm:git:git://github.com/taskadapter/mantis-java-api.git</connection> <!-- "developerConnection" is required for Maven Release plugin. --> <developerConnection>scm:git:git@github.com:taskadapter/mantis-java-api.git</developerConnection> <tag>HEAD</tag> <!-- A publicly browsable repository.--> <url>https://github.com/taskadapter/mantis-java-api/tree/master</url> </scm> <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> <!-- to generate Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <excludePackageNames>org.mantis.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>javax.xml</groupId> <artifactId>saaj-api</artifactId> <version>1.3</version> <type>pom</type> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-discovery</groupId> <artifactId>commons-discovery</artifactId> <version>20040218.194635</version> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> <version>1.6.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </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>