assertion
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion</artifactId>
<version>0.0.30</version>
</dependency><?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">
<!-- POM Reference : http://maven.apache.org/pom.html -->
<modelVersion>4.0.0</modelVersion>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion</artifactId>
<version>0.0.30</version>
<packaging>pom</packaging>
<name>OBJECT FANATICS Assertion Library</name>
<description>OBJECT FANATICS Assertion Library</description>
<url>http://www.objectfanatics.jp/</url>
<!--
Reference : http://maven.apache.org/pom.html#Licenses
Reference : http://maven.apache.org/maven-model/maven.html#class_license
-->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Reference : http://maven.apache.org/pom.html#Aggregation -->
<modules>
<module>constraints</module>
<module>weaver</module>
<module>agent</module>
<module>agent-all</module>
<module>mojo</module>
<module>mojo-test</module>
<module>sample</module>
</modules>
<!--
Reference : http://maven.apache.org/pom.html#SCM
Reference : http://maven.apache.org/maven-model/maven.html#class_scm
-->
<scm>
<!-- The source control management system URL for read only. -->
<connection>scm:git:git://github.com/objectfanatics/assertion.git</connection>
<!-- The source control management system URL for read/write. -->
<developerConnection>scm:git:git@github.com:objectfanatics/assertion.git</developerConnection>
<!-- The URL to the project's browsable SCM repository -->
<url>https://github.com/objectfanatics/assertion</url>
</scm>
<!--
Reference : http://maven.apache.org/pom.html#Distribution_Management
Reference : http://maven.apache.org/maven-model/maven.html#class_distributionManagement
-->
<distributionManagement>
<!-- http://maven.apache.org/maven-model/maven.html#class_repository -->
<repository>
<id>objectfanatics</id>
<name>OBJECT FANATICS Release Repository</name>
<url>scpexe://shell.sourceforge.jp/home/groups/d/do/domaingen/htdocs/m2central</url>
</repository>
</distributionManagement>
<!--
Reference : http://maven.apache.org/pom.html#Build_Settings
Reference : http://maven.apache.org/maven-model/maven.html#build
-->
<build>
<plugins>
<!--
Maven Compiler Plugin
- http://maven.apache.org/plugins/maven-compiler-plugin/
- http://repo2.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--
maven-release-plugin http://maven.apache.org/plugins/maven-release-plugin/
- prepare http://maven.apache.org/plugins/maven-release-plugin/examples/prepare-release.html
- release http://maven.apache.org/plugins/maven-release-plugin/examples/perform-release.html
- http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-release-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
</plugin>
<!--
maven-javadoc-plugin
- http://maven.apache.org/plugins/maven-javadoc-plugin/
- http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>1.6</source>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<charset>UTF-8</charset>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
</links>
</configuration>
</plugin>
</plugins>
<extensions>
<!--
Maven Wagon SSH
- http://maven.apache.org/wagon/wagon-providers/wagon-ssh/
- http://repo2.maven.org/maven2/org/apache/maven/wagon/wagon-ssh/
-->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
</build>
<!--
Reference : http://maven.apache.org/pom.html#Dependency_Management
Reference : http://maven.apache.org/maven-model/maven.html#reporting
-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion-constraints</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion-weaver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion-agent</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jp.objectfanatics</groupId>
<artifactId>assertion-mojo</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- Reference : http://maven.apache.org/pom.html#Dependencies -->
<dependencies>
<!-- http://testng.org/ -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
<!-- http://easymock.org/ -->
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- suppress warning -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>