kaxxa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.icij.kaxxa</groupId> <artifactId>kaxxa</artifactId> <version>1.0.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"> <modelVersion>4.0.0</modelVersion> <groupId>org.icij.kaxxa</groupId> <artifactId>kaxxa</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>ICIJ Kaxxa</name> <description>The ICIJ Kaxxa toolkit provides the nuts and bolts for our application suite.</description> <url>https://github.com/ICIJ/kaxxa</url> <organization> <name>The International Consortium of Investigative Journalists</name> <url>https://www.icij.org/</url> </organization> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/ICIJ/kaxxa/issues</url> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/ICIJ/kaxxa</url> <connection>scm:git:git://github.com/ICIJ/kaxxa.git</connection> <developerConnection>scm:git:git@github.com:ICIJ/kaxxa.git</developerConnection> </scm> <developers> <developer> <email>mcaruana@icij.org</email> <name>Matthew Caruana Galizia</name> <url>https://github.com/mattcg</url> <id>mcaruanagalizia</id> <organization>The International Consortium of Investigative Journalists</organization> <organizationUrl>https://www.icij.org/</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <maven-compiler.version>3.6.0</maven-compiler.version> </properties> <modules> <module>kaxxa-concurrent</module> <module>kaxxa-events</module> <module>kaxxa-io</module> <module>kaxxa-sql</module> </modules> <profiles> <profile> <id>release</id> <properties> <username>${user.name}</username> </properties> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <stagingProfileId>46a8e1849c1646</stagingProfileId> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>src</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>source-release-assembly</id> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</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> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>