sit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.sit</groupId>
<artifactId>sit</artifactId>
<version>0.1</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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.seaf</groupId>
<artifactId>seaf-parent</artifactId>
<version>11</version>
<relativePath>../../seaf-support-reactor/seaf-parent</relativePath>
</parent>
<!-- Artifact -->
<groupId>net.sf.sit</groupId>
<artifactId>sit</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<!-- Description -->
<name>Service Invocation Tool</name>
<description>Provides implementation of a Java interface by delegating to other Java objects.</description>
<url>http://sit.sf.net/</url>
<scm>
<connection>scm:svn:https://sit.svn.sourceforge.net/svnroot/sit/tags/sit/sit-0.1</connection>
<developerConnection>scm:svn:https://sit.svn.sourceforge.net/svnroot/sit/tags/sit/sit-0.1</developerConnection>
<url>http://sit.svn.sf.net/viewvc/sit/tags/sit/sit-0.1</url>
</scm>
<distributionManagement>
<site>
<id>sit.sf.net</id>
<url>scp://shell.sourceforge.net/home/project-web/sit/htdocs/${project.artifactId}</url>
</site>
</distributionManagement>
<issueManagement>
<system>Sourceforge</system>
<url>http://sf.net/tracker/?group_id=214449</url>
</issueManagement>
<build>
<plugins>
<!-- generate beans -->
<plugin>
<groupId>net.sf.jbg.mojo</groupId>
<artifactId>jbg-maven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>initialize</id>
<goals>
<goal>initialize</goal>
</goals>
</execution>
<execution>
<id>beans</id>
<goals>
<goal>beans</goal>
</goals>
</execution>
<execution>
<id>test-beans</id>
<goals>
<goal>test-beans</goal>
</goals>
</execution>
<execution>
<id>finalize</id>
<goals>
<goal>finalize</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>saxon</artifactId>
<version>8.7</version>
</dependency>
</dependencies>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://sit.svn.sourceforge.net/svnroot/sit/tags/${project.artifactId}/</tagBase>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>net.sf.seaf</groupId>
<artifactId>seaf-commons</artifactId>
<version>0.5</version>
</dependency>
<dependency>
<groupId>net.sf.jbg</groupId>
<artifactId>jbg</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>net.sf.seaf</groupId>
<artifactId>seaf-test-commons</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-legacy</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>