grains-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.nullschool</groupId>
<artifactId>grains-core</artifactId>
<version>0.8.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2013 Cameron Beccario
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ grains core
~
~ @author Cameron Beccario
-->
<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>net.nullschool</groupId>
<artifactId>grains-master</artifactId>
<version>0.8.0</version>
<relativePath>../master/pom.xml</relativePath>
</parent>
<groupId>net.nullschool</groupId>
<artifactId>grains-core</artifactId>
<version>0.8.0</version>
<packaging>jar</packaging>
<name>core</name>
<description>Grains Core</description>
<url>https://github.com/cambecc/grains</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>cambecc</id>
<name>Cameron Beccario</name>
<email>cambecc@nullschool.net</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:cambecc/grains.git</connection>
<developerConnection>scm:git:git@github.com:cambecc/grains.git</developerConnection>
<url>https://github.com/cambecc/grains.git</url>
<tag>grains-project-0.8.0</tag>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Create a jar of the testing utilities so they can be used by other modules' tests. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<goals><goal>test-jar</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>