observers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.insogroup</groupId>
<artifactId>observers</artifactId>
<version>0.6.7</version>
</dependency><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>
<groupId>com.github.insogroup</groupId>
<artifactId>observers</artifactId>
<version>0.6.7</version>
<packaging>jar</packaging>
<name>observers</name>
<description>Library was created as observers for usual needs</description>
<url>https://github.com/insogroup/observers</url>
<developers>
<developer>
<name>Ovsyannikov Alexey</name>
<email>ovsyannikov.alexey95@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/insogroup/observers/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/insogroup/observers</url>
<tag>HEAD</tag>
<developerConnection>scm:git:[fetch=]https://github.com/insogroup/observers.git[push=]ssh:git@github.com:insogroup/observers.git</developerConnection>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<!--Plugins for compiling-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/resources/</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/res</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<show>public</show>
</configuration>
<executions>
<execution>
<phase>package</phase>
<configuration>
<show>public</show>
</configuration>
<goals>
<goal>javadoc</goal>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>bintray-insogroup-InsoGroupRepository</id>
<name>insogroup-InsoGroupRepository</name>
<url>https://api.bintray.com/maven/insogroup/InsoGroupRepository/observers/;publish=1</url>
</repository>
</distributionManagement>
</project>