Skip to content

Commit

Permalink
workflow changed
Browse files Browse the repository at this point in the history
  • Loading branch information
antobaldu committed Aug 13, 2020
1 parent dd1e38c commit 4d01ba1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
File renamed without changes.
20 changes: 17 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</execution>
</executions>
</plugin>
<plugin>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
Expand All @@ -79,11 +79,17 @@
</goals>
</execution>
</executions>
</plugin>
<configuration>
<gpgArguments>
<arg>-pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin-->
</plugins>
</build>

<distributionManagement>
<!--distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
Expand All @@ -92,5 +98,13 @@
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement!-->

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub PostFinance Apache Maven Packages</name>
<url>https://maven.pkg.github.com/postfinance/apache_exporter</url>
</repository>
</distributionManagement>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class ApacheExporterTest {
public void export() {
ApacheExporter exporter = new ApacheExporter();
try {
for (int i = 0; i < 10; i++) {
for (int i = 0; i < 2; i++) {
System.out.println(exporter.export());
Thread.sleep(1000);
}
Expand Down

0 comments on commit 4d01ba1

Please sign in to comment.