Skip to content

Commit

Permalink
add Klarrio JFrog (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
duke-bartholomew authored Jul 5, 2019
1 parent 0c6735b commit bfdb36d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
target/
.idea/
*.iml

.idea/
*.iml

32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>klarrio</id>
<name>Klarrio Artifactory</name>
<url>https://klarrio.jfrog.io/klarrio/jvm-libs</url>
<layout>default</layout>
</repository>
</repositories>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -45,6 +54,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jfrog.buildinfo</groupId>
<artifactId>artifactory-maven-plugin</artifactId>
<version>2.6.1</version>
<inherited>false</inherited>
<executions>
<execution>
<id>build-info</id>
<goals>
<goal>publish</goal>
</goals>
<configuration>
<publisher>
<contextUrl>https://klarrio.jfrog.io/klarrio</contextUrl>
<username>${artifactoryusername}</username>
<password>${artifactorypassword}</password>
<repoKey>jvm-libs-local</repoKey>
<snapshotRepoKey>jvm-libs-local</snapshotRepoKey>
</publisher>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit bfdb36d

Please sign in to comment.