-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert Project to Multi Module (#11)
* Convert Project to Multi Module * Converting project to multi module * adding -SNAPSHOT to the release tag * improving README * * adding new line for pom file * * trying to resolve transitive dependency issue * adding a comment for commented out plugin (it will get enabled once java docs are properly done)
- Loading branch information
1 parent
b1b93b6
commit 20ed303
Showing
35 changed files
with
314 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,289 @@ | ||
<?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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.deciphernow</groupId> | ||
<artifactId>gm-data-sdk</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<name>${project.groupId}:${project.artifactId}</name> | ||
<description>Grey Matter Data SDK</description> | ||
<packaging>jar</packaging> | ||
<scm> | ||
<connection>scm:git:[email protected]:deciphernow/gm-gm-java-sdk.git</connection> | ||
<developerConnection>scm:git:[email protected]:deciphernow/gm-java-sdk.git</developerConnection> | ||
<url>https://github.com/deciphernow/gm-java-sdk</url> | ||
</scm> | ||
<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> | ||
<developers> | ||
<developer> | ||
<name>Parth Shah</name> | ||
<organization>Decipher Technology Studios</organization> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jre.version>1.8</jre.version> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<commons.lang3.version>3.9</commons.lang3.version> | ||
<commons.io.version>2.5</commons.io.version> | ||
<commons.logging.version>1.2</commons.logging.version> | ||
<gson.version>2.8.5</gson.version> | ||
<guava.version>28.0-jre</guava.version> | ||
<http.components.version>4.5.9</http.components.version> | ||
<http.core.version>4.4.11</http.core.version> | ||
<bouncycastle.plugin.version>1.0.0</bouncycastle.plugin.version> | ||
<javadoc.plugin.version>3.1.0</javadoc.plugin.version> | ||
<source.plugin.version>3.1.0</source.plugin.version> | ||
<version.plugin.plugin>3.6.0</version.plugin.plugin> | ||
<maven.clean.plugin.version>3.1.0</maven.clean.plugin.version> | ||
<maven.resource.plugin.version>3.1.0</maven.resource.plugin.version> | ||
<maven.surefire.plugin.version>2.22.2</maven.surefire.plugin.version> | ||
<maven.dependency.plugin.version>3.1.1</maven.dependency.plugin.version> | ||
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> | ||
</properties> | ||
<repositories> | ||
<repository> | ||
<id>Sonatype</id> | ||
<name>Sonatype RSO</name> | ||
<layout>default</layout> | ||
<url>http://repository.sonatype.org/</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
<updatePolicy>never</updatePolicy> | ||
</releases> | ||
</repository> | ||
<repository> | ||
<id>Maven-Central</id> | ||
<name>Maven Central</name> | ||
<layout>default</layout> | ||
<url>http://central.maven.org/maven2/</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
<updatePolicy>never</updatePolicy> | ||
</releases> | ||
</repository> | ||
<repository> | ||
<id>Twitter-Maven</id> | ||
<name>Twitter Maven</name> | ||
<layout>default</layout> | ||
<url>http://maven.twttr.com</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
<releases> | ||
<enabled>true</enabled> | ||
<updatePolicy>never</updatePolicy> | ||
</releases> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<!-- Commons Libraries --> | ||
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
<version>${commons.logging.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>${commons.lang3.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>${gson.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Apache HttpClient --> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpcore</artifactId> | ||
<version>${http.core.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
<version>${http.components.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpmime</artifactId> | ||
<version>${http.components.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<!-- Testing Libraries --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- For Build --> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>${commons.io.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>${maven.surefire.plugin.version}</version> | ||
<configuration> | ||
<skipTests>true</skipTests> | ||
<argLine>-Djavax.net.debug=all</argLine> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>${version.plugin.plugin}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>${maven.clean.plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<version>${maven.dependency.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>analyze</id> | ||
<goals> | ||
<goal>analyze-only</goal> | ||
</goals> | ||
<configuration> | ||
<failOnWarning>true</failOnWarning> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${maven.compiler.plugin.version}</version> | ||
<configuration> | ||
<source>${jre.version}</source> | ||
<target>${jre.version}</target> | ||
<encoding>UTF-8</encoding> | ||
<forceJavacCompilerUse>true</forceJavacCompilerUse> | ||
</configuration> | ||
</plugin> | ||
<!-- commenting out because we do not have proper code documentation --> | ||
<!-- Will be enabled once code documentation is done --> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
<!-- <artifactId>maven-javadoc-plugin</artifactId>--> | ||
<!-- <version>${javadoc.plugin.version}</version>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <id>attach-javadocs</id>--> | ||
<!-- <goals>--> | ||
<!-- <goal>jar</goal>--> | ||
<!-- </goals>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- <configuration>--> | ||
<!-- <skip>true</skip>--> | ||
<!-- <excludePackageNames>*.transform</excludePackageNames>--> | ||
<!-- <minmemory>128m</minmemory>--> | ||
<!-- <maxmemory>1024m</maxmemory>--> | ||
<!-- </configuration>--> | ||
<!-- </plugin>--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>${maven.resource.plugin.version}</version> | ||
<configuration> | ||
<encoding>UTF-8</encoding> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>deploy</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.deciphernow</groupId> | ||
<artifactId>bouncycastle-maven-plugin</artifactId> | ||
<version>${bouncycastle.plugin.version}</version> | ||
<configuration> | ||
<passphrase>${env.PGP_PASSPHRASE}</passphrase> | ||
<rings>${env.PGP_RINGS}</rings> | ||
<userId>${env.PGP_USER_ID}</userId> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- commenting out because we do not have proper code documentation --> | ||
<!-- Will be enabled once code documentation is done --> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
<!-- <artifactId>maven-javadoc-plugin</artifactId>--> | ||
<!-- <version>${javadoc.plugin.version}</version>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <id>attach-javadocs</id>--> | ||
<!-- <phase>package</phase>--> | ||
<!-- <goals>--> | ||
<!-- <goal>jar</goal>--> | ||
<!-- </goals>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- </plugin>--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>${source.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.