bears
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cedarsoft.hudson</groupId>
<artifactId>bears</artifactId>
<version>1.0.2</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/maven-v4_0_0.xsd">
<parent>
<groupId>com.cedarsoft</groupId>
<artifactId>open</artifactId>
<version>3.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.cedarsoft.hudson</groupId>
<artifactId>bears</artifactId>
<version>1.0.2</version>
<name>Hudson Bears Plugin</name>
<licenses>
<license>
<name>GLPv3</name>
<url>http://cedarsoft.org/gpl3</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://git.cedarsoft.com/com.cedarsoft.hudson.bears</connection>
<developerConnection>scm:git:ssh://git.cedarsoft.com/home/git/com.cedarsoft.hudson.bears</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>hudson-bears</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.cedarsoft.hudson.bears.BearUpdater</mainClass>
</manifest>
</archive>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>