Skip to content

Commit

Permalink
Merge pull request #2 from Hi-Fi/travisDeploy
Browse files Browse the repository at this point in the history
Added configuration for deployment
  • Loading branch information
Hi-Fi authored Jul 29, 2018
2 parents f16de45 + c871251 commit 36ee574
Showing 1 changed file with 52 additions and 5 deletions.
57 changes: 52 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,53 @@
<name>tcp-mocker-server</name>
<description>Test server to proxy and mock dependencies in testing. </description>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Hi-Fi/tcp-mocker-server/issues</url>
</issueManagement>

<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>

<scm>
<url>https://github.com/Hi-Fi/tcp-mocker-server</url>
<connection>scm:git://github.com/Hi-Fi/tcp-mocker-server.git</connection>
<developerConnection>scm:git:ssh://git@github.com:Hi-Fi/tcp-mocker-server.git</developerConnection>
</scm>

<developers>
<developer>
<name>Juho Saarinen</name>
<email>juho.saarinen@gmail.com</email>
<id>hi-fi</id>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -61,10 +108,10 @@
<version>3.3.7</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
</dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -83,7 +130,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>app</classifier>
<classifier>app</classifier>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 36ee574

Please # to comment.