pom.xml 3.83 KB
Newer Older
1 2 3 4 5 6
<?xml version="1.0" encoding="UTF-8"?>
<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>
7 8 9
    <groupId>com.google.protobuf</groupId>
    <artifactId>protobuf-parent</artifactId>
    <version>3.0.0-beta-2</version>
10
  </parent>
11

12 13
  <artifactId>protobuf-java-util</artifactId>
  <packaging>bundle</packaging>
14 15 16 17

  <name>Protocol Buffers [Util]</name>
  <description>Utilities for Protocol Buffers</description>

18 19
  <dependencies>
    <dependency>
20
      <groupId>${project.groupId}</groupId>
21
      <artifactId>protobuf-java</artifactId>
22
      <version>${project.version}</version>
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.3</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymock</artifactId>
    </dependency>
    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymockclassextension</artifactId>
    </dependency>
  </dependencies>
46 47 48 49 50 51

  <properties>
    <!-- Use the core proto dir so that we can call the core generation script -->
    <test.proto.dir>../core/src/test/proto</test.proto.dir>
  </properties>

52 53 54 55 56
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
57
          <!-- Generate the test protos -->
58 59 60 61
          <execution>
            <id>generate-test-sources</id>
            <phase>generate-test-sources</phase>
            <configuration>
62 63 64 65 66 67 68 69 70 71
              <target>
                <!-- Generate all of the test protos from the core module -->
                <ant antfile="../core/generate-test-sources-build.xml"/>

                <!-- Generate additional test protos for this module -->
                <exec executable="${protoc}">
                  <arg value="--java_out=${generated.testsources.dir}" />
                  <arg value="--proto_path=${protobuf.source.dir}" />
                  <arg value="--proto_path=src/test/proto" />
                  <arg value="src/test/proto/com/google/protobuf/util/json_test.proto" />
72
                </exec>
73
              </target>
74 75 76 77 78 79 80
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
81 82 83 84 85 86 87 88 89 90

      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <!-- Add the generated test sources to the build -->
          <generatedTestSourcesDirectory>${generated.testsources.dir}</generatedTestSourcesDirectory>
        </configuration>
      </plugin>

      <!-- Configure the OSGI bundle -->
91 92 93 94 95 96 97 98
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bundle-DocURL>
            <Bundle-SymbolicName>com.google.protobuf.util</Bundle-SymbolicName>
99
            <Export-Package>com.google.protobuf.util;version=${project.version}</Export-Package>
100 101 102
          </instructions>
        </configuration>
      </plugin>
103 104

      <!-- Configure the fat jar to include all dependencies -->
105
      <plugin>
106 107 108 109 110 111
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
112
      </plugin>
113 114 115
    </plugins>
  </build>
</project>