pom.xml 4.25 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
    <groupId>com.google.protobuf</groupId>
    <artifactId>protobuf-parent</artifactId>
9
    <version>3.6.1</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 22 23 24 25 26
      <artifactId>protobuf-java</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
27 28 29 30 31
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
      <scope>test</scope>
    </dependency>
32 33 34
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
Bo Yang's avatar
Bo Yang committed
35
      <version>2.7</version>
36 37 38 39 40 41 42 43 44 45 46 47 48 49
    </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>
50 51 52 53 54 55

  <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>

56 57 58 59 60
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
61
          <!-- Generate the test protos -->
62 63 64 65
          <execution>
            <id>generate-test-sources</id>
            <phase>generate-test-sources</phase>
            <configuration>
66 67 68 69 70 71 72 73 74 75
              <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" />
76
                </exec>
77
              </target>
78 79 80 81 82 83 84
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
85

86
      <!-- Add the generated test sources to the build -->
87
      <plugin>
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>add-generated-test-sources</id>
            <phase>generate-test-sources</phase>
            <goals>
              <goal>add-test-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>${generated.testsources.dir}</source>
              </sources>
            </configuration>
          </execution>
        </executions>
104 105 106
      </plugin>

      <!-- Configure the OSGI bundle -->
107 108 109 110 111 112 113 114
      <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>
115
            <Export-Package>com.google.protobuf.util;version=${project.version}</Export-Package>
116 117 118
          </instructions>
        </configuration>
      </plugin>
119 120

      <!-- Configure the fat jar to include all dependencies -->
121
      <plugin>
122 123 124 125 126 127
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
        </configuration>
128
      </plugin>
129 130 131
    </plugins>
  </build>
</project>