MessAdmin-Serializable
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sourceforge.messadmin</groupId>
<artifactId>MessAdmin-Serializable</artifactId>
<version>4.1.1</version>
</dependency><?xml version="1.0"?>
<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>
<!-- - - - - - - - - - -->
<!-- POM Relationships -->
<!-- - - - - - - - - - -->
<!-- Coordinates -->
<groupId>net.sourceforge.messadmin</groupId>
<artifactId>MessAdmin-Serializable</artifactId>
<version>4.1.1</version>
<!-- Dependencies -->
<dependencies>
<!-- Compile-time dependencies (default scope) -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>MessAdmin-Core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<!-- Provided dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version><!-- we only need 1.2, but it isn't in the Maven repository... :-( -->
<scope>provided</scope>
</dependency>
<!-- Run-time dependencies -->
<!-- Test-time dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[3.8.2,3.9)</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- - - - - - - - - - - -->
<!-- Project Information -->
<!-- - - - - - - - - - - -->
<name>MessAdmin</name>
<description>Notification system and Session administration for J2EE Web Applications</description>
<url>http://messadmin.sourceforge.net</url>
<inceptionYear>2005</inceptionYear>
<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>manual</distribution>
</license>
</licenses>
<developers>
<developer>
<id>clime</id>
<name>Cédrik LIME</name>
<email>cedrik_lime@users.sourceforge.net</email>
<url>http://messadmin.sf.net</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<contributors></contributors>
<!-- - - - - - - - -->
<!-- Build Settings -->
<!-- - - - - - - - -->
<packaging>jar</packaging>
<!-- - - - - - - - - - -->
<!-- Build Environment -->
<!-- - - - - - - - - - -->
<!-- Environment Information -->
<scm><!-- There's no scm really. I need this to upload to the maven repository. -->
<connection>https://svn.sourceforge.net/svnroot/messadmin</connection>
<url>https://svn.sourceforge.net/svnroot/messadmin</url>
</scm>
</project>