giggle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.erigir</groupId>
<artifactId>giggle</artifactId>
<version>0.0.2+6</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.erigir</groupId>
<artifactId>giggle</artifactId>
<packaging>jar</packaging>
<version>0.0.2+6</version>
<name>Giggle</name>
<description>Giggle - Java Thick Client OpenID Authenticator</description>
<url>https://github.com/bitblit/giggle</url>
<inceptionYear>2016</inceptionYear>
<issueManagement>
<system>github</system>
<url>https://github.com/bitblit/giggle/issues</url>
</issueManagement>
<ciManagement>
</ciManagement>
<organization>
<name>Erigir</name>
<url>http://www.erigir.com</url>
</organization>
<scm>
<url>https://github.com/bitblit/giggle</url>
<connection>scm:git:git@github.com:bitblit/giggle.git</connection>
<developerConnection>scm:git:git@github.com:bitblit/giggle.git</developerConnection>
</scm>
<developers>
<developer>
<id>cweiss</id>
<name>Chris Weiss</name>
<email>bitblit@gmail.com</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>Apache V2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<site.name>giggle</site.name>
<slf4j.version>1.7.21</slf4j.version>
<junit.version>4.12</junit.version>
<jackson.version>2.7.1</jackson.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format>
<mytime>${maven.build.timestamp}</mytime>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>
<!--
These plugins are needed so I can sign the jar(s) to send them to Maven Central, and for maven itself
-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<passphrase>${GPG_PASSPHRASE}</passphrase>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.19</version>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>
<!--
Submitting following the instructions at:
http://wickedsource.org/2013/09/23/releasing-your-project-to-maven-central-guide/
mvn clean javadoc:jar source:jar gpg:sign deploy -Dgpg.passphrase=your_passphrase
https://oss.sonatype.org/
-->