protostuff-runtime-md
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-runtime-md</artifactId>
<version>1.4.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/maven-v4_0_0.xsd">
<parent>
<artifactId>protostuff</artifactId>
<groupId>com.dyuproject.protostuff</groupId>
<version>1.4.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-runtime-md</artifactId>
<name>protostuff :: runtime-md</name>
<description>protostuff runtime for mobile devices (actually JREs with no sun.reflect.* packages)</description>
<packaging>jar</packaging>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>copy-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy todir="${project.build.directory}/extra-sources">
<fileset dir="../protostuff-runtime/src/main/java">
<exclude name="**/RuntimeUnsafeFieldFactory.java" />
<exclude name="**/OnDemandSunReflectionFactory.java" />
<exclude name="**/UnsafeAccessor.java" />
<exclude name="**/RuntimeFieldFactory.java" />
<exclude name="**/RuntimeEnv.java" />
</fileset>
</copy>
<copy todir="${project.build.directory}/extra-test-sources">
<fileset dir="../protostuff-runtime/src/test/java">
<exclude name="**/ImmutableObjectsTest.java" />
<exclude name="**/EnumSetAndMapTest.java" />
<exclude name="**/*RuntimeObjectSchemaTest.java" />
</fileset>
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/extra-sources</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-test-source</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/extra-test-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<classifier>tests</classifier>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.dyuproject.protostuff</groupId>
<artifactId>protostuff-collectionschema</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>