bedede
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.co.jemos.testing.bedede</groupId> <artifactId>bedede</artifactId> <version>0.1.1.RELEASE</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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>uk.co.jemos.testing.bedede</groupId> <artifactId>bedede</artifactId> <version>0.1.1.RELEASE</version> <licenses> <license> <name>Podam runs under the MIT license</name> <url>LICENSE.txt</url> </license> </licenses> <ciManagement> <system>Jenkins</system> <url>https://jemos.ci.cloudbees.com/job/bedede/</url> </ciManagement> <scm> <url>scm:git clone git://github.com/mtedone/bedede.git</url> <connection>scm:git clone git://github.com/mtedone/bedede.git</connection> </scm> <developers> <developer> <id>mtedone</id> <name>Marco Tedone</name> <email>marco.tedone@gmail.com</email> <organization>Jemos</organization> <organizationUrl>http://www.jemos.co.uk</organizationUrl> <roles> <role>Project Lead</role> </roles> <timezone>UTC</timezone> <url>http://tedone.typepad.com/blog/</url> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <name>bedede</name> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <attach>true</attach> <show>private</show> <doctitle>Jemos Bedede API - Version: ${project.version}</doctitle> <footer>Jemos 2002 - 2013: All Rights Reserved. Bedede runs under the MIT license</footer> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0-beta-3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> </plugin> <!-- It signs the artifact for uploading to Maven Central --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>assembly-project</id> <phase>deploy</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <outputDirectory>${project.build.directory}/site/downloads</outputDirectory> <descriptors> <descriptor>src/main/assembly/project.xml</descriptor> <descriptor>src/main/assembly/bin.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <dependency> <groupId>uk.co.jemos.podam</groupId> <artifactId>podam</artifactId> <version>3.1.1.RELEASE</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> </dependencies> <reporting> <outputDirectory>${basedir}/target/site</outputDirectory> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>project-team</report> <report>cim</report> <report>issue-tracking</report> <report>license</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <attach>true</attach> <show>private</show> <doctitle>Jemos Bedede API - Version: ${project.version}</doctitle> <footer>Jemos 2002 - 2013: All Rights Reserved. Bedede runs under the MIT license</footer> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>surefire-report-maven-plugin</artifactId> <version>2.0-beta-1</version> <inherited>true</inherited> </plugin> </plugins> </reporting> </project>