thron-sdk-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.thron.sdk</groupId> <artifactId>thron-sdk-java</artifactId> <version>6.5.2</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>com.thron.sdk</groupId> <artifactId>thron-sdk-java</artifactId> <version>6.5.2</version> <packaging>pom</packaging> <name>thron-sdk-java</name> <description>THRON SDK library</description> <inceptionYear>2015</inceptionYear> <url>http://developer.thron.com</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Flavio Alberti</name> <email>flavio.alberti@thron.com</email> <organization>THRON</organization> <organizationUrl>http://www.thron.com</organizationUrl> </developer> <developer> <name>Alessandro Ferlin</name> <email>alessandro.ferlin@thron.com</email> <organization>THRON</organization> <organizationUrl>http://www.thron.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com/thron-com/clients.git</connection> <developerConnection>scm:git:git@github.com/thron-com/clients.git</developerConnection> <url>git@github.com/thron-com/clients.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format> <maven-resources-plugin.version>2.6</maven-resources-plugin.version> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <maven-scala-plugin.version>2.15.2</maven-scala-plugin.version> <!-- SCALA VERSIONS --> <scala.version>2.11</scala.version> <scala.version.full>2.11.12</scala.version.full> <!-- LIBRARIES VERSIONS --> <jersey.version>1.10</jersey.version> <commons-lang.version>2.6</commons-lang.version> <commons-io.version>2.4</commons-io.version> <commons-codec.version>1.9</commons-codec.version> </properties> <modules> <module>thron-common-lib</module> <module>thron-core-xadmin</module> <module>thron-core-xcontents</module> <module>thron-core-xintelligence</module> <module>thron-core-xpackager</module> <module>thron-core-xsso</module> <module>thron-core-xtest</module> <module>thron-core-contact</module> </modules> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>${scala.version.full}</version> </dependency> </dependencies> <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> <build> <plugins> <!-- Versions plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <failOnError>false</failOnError> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.2</version> </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.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> <version>${maven-scala-plugin.version}</version> <executions> <execution> <id>scala-compile-first</id> <phase>process-resources</phase> <goals> <goal>add-source</goal> <goal>compile</goal> </goals> </execution> </executions> <configuration> <scalaVersion>${scala.version.full}</scalaVersion> <args> <arg>-g:notailcalls</arg> <arg>-target:jvm-${maven.compiler.target}</arg> <arg>-dependencyfile</arg> <arg>${project.build.directory}/.scala_dependencies</arg> </args> </configuration> </plugin> </plugins> <!-- --> <pluginManagement> <plugins> <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> <version>${maven-scala-plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>ossrh</id> <properties> <gpg.executable>gpg</gpg.executable> <gpg.keyname>${env.GPG_KEYNAME}</gpg.keyname> <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> <gpg.defaultKeyring>false</gpg.defaultKeyring> <gpg.publicKeyring>${env.GPG_DIR}/pubring.gpg</gpg.publicKeyring> <gpg.secretKeyring>${env.GPG_DIR}/secring.gpg</gpg.secretKeyring> </properties> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <!-- GPG Signed Components --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <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.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>