java-serializer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>asia.redact.bracket.properties</groupId> <artifactId>java-serializer</artifactId> <version>1.0.0</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>asia.redact.bracket.properties</groupId> <artifactId>java-serializer</artifactId> <version>1.0.0</version> <name>Bracket Java Serializer</name> <description>Simple Java Object Serialization to Bracket properties files for use in messaging, etc.</description> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>test</scope> </dependency> <dependency> <groupId>asia.redact.bracket.properties</groupId> <artifactId>bracket-properties</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>net.iharder</groupId> <artifactId>base64</artifactId> <version>2.3.8</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <verbose>true</verbose> <fork>false</fork> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <show>private</show> <nohelp>true</nohelp> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <configuration> <attach>true</attach> </configuration> <!-- <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> --> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <url>http://code.google.com/p/bracket-properties/</url> <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> <inceptionYear>2013</inceptionYear> <organization> <name>David R. Smith</name> <url>http://code.google.com/p/bracket-properties/</url> </organization> <scm> <connection>scm:svn:http://bracket-properties.googlecode.com/svn/trunk/java-serializer</connection> <developerConnection>scm:svn:https://bracket-properties.googlecode.com/svn/trunk/java-serializer</developerConnection> <url>http://bracket-properties.googlecode.com/svn/trunk/java-serializer</url> </scm> <developers> <developer> <id>1</id> <name>David R. Smith</name> <email>davesmith.gbs@gmail.com</email> </developer> </developers> <issueManagement> <url>http://code.google.com/p/bracket-properties/issues/list</url> <system>Google Code</system> </issueManagement> <ciManagement> <system>None</system> </ciManagement> </project>