oneuptime/log-java/pom.xml

132 lines
5.0 KiB
XML
Raw Normal View History

<?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>
2020-07-01 17:23:56 +00:00
<groupId>io.hackerbay.fyipe</groupId>
<artifactId>log-java</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2020-07-01 09:18:28 +00:00
<version>3.8.1</version>
<configuration>
<source>7</source>
<target>7</target>
</configuration>
</plugin>
2020-07-01 17:23:56 +00:00
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
2020-07-15 17:15:22 +00:00
<serverId>ossrh</serverId>
2020-07-01 17:23:56 +00:00
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
2020-07-01 13:09:49 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
2020-07-01 16:18:38 +00:00
</plugin>
2020-07-01 16:17:19 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
2020-07-01 18:43:42 +00:00
<configuration>
2020-07-01 18:49:04 +00:00
<source>7</source>
<!-- <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> -->
2020-07-01 18:43:42 +00:00
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
2020-07-09 08:55:13 +00:00
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
2020-07-01 17:23:56 +00:00
</plugin>
2020-07-01 12:47:33 +00:00
</plugins>
</build>
2020-06-30 17:16:58 +00:00
<name>Fyipe Application</name>
<description>A fyipe JS package that send logs from your applications to your fyipe dashboard.</description>
<url>https://www.fyipe.com/</url>
<dependencies>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
</dependency>
</dependencies>
2020-06-30 17:16:58 +00:00
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>HackerBay, Inc.</name>
<email>hello@hackerbay.io</email>
<organization>HackerBay, Inc.</organization>
<organizationUrl>http://www.hackerbay.io</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Fyipe/log-java.git</connection>
<developerConnection>scm:git:ssh://github.com:Fyipe/log-java.git</developerConnection>
<url>http://github.com/Fyipe/log-java</url>
</scm>
2020-07-01 16:17:19 +00:00
<distributionManagement>
<snapshotRepository>
2020-07-15 17:15:22 +00:00
<id>ossrh</id>
<name>ossrh</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
2020-07-16 11:52:14 +00:00
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2020-07-16 11:52:14 +00:00
</repository>
2020-07-01 16:17:19 +00:00
</distributionManagement>
</project>