Skip to content

Commit

Permalink
Merge pull request #49 from pavog/v1
Browse files Browse the repository at this point in the history
Add support for maven
  • Loading branch information
diogotcorreia authored Feb 3, 2019
2 parents d7f4aed + b3de996 commit 57a7120
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?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.rexcantor64.triton</groupId>
<artifactId>api</artifactId>
<version>1.0.1-SNAPSHOT</version>
<properties>
<build.number/>
<plugin.version>${project.version}-${build.number}</plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:[email protected]:Rexcantor/Triton.git</connection>
<developerConnection>scm:git:[email protected]:Rexcantor/Triton.git</developerConnection>
<url>https://github.com/Rexcantor/Triton</url>
<tag>HEAD</tag>
</scm>
<build>
<finalName>TritonAPI-v${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

</project>
File renamed without changes.

0 comments on commit 57a7120

Please sign in to comment.