blob: ca81c823e8fa7f7790b3b67a8ea2af309523bf73 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.google.flatbuffers</groupId>
5 <artifactId>flatbuffers-java</artifactId>
James Kuszmaul3b15b0c2022-11-08 14:03:16 -08006 <version>22.10.26</version>
Austin Schuhe89fa2d2019-08-14 20:24:23 -07007 <packaging>bundle</packaging>
8 <name>FlatBuffers Java API</name>
9 <description>
10 Memory Efficient Serialization Library
11 </description>
12 <developers>
13 <developer>
14 <name>Wouter van Oortmerssen</name>
15 </developer>
Austin Schuh2dd86a92022-09-14 21:19:23 -070016 <developer>
17 <name>Derek Bailey</name>
18 <email>dbaileychess@gmail.com</email>
19 </developer>
Austin Schuhe89fa2d2019-08-14 20:24:23 -070020 </developers>
21 <properties>
22 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23 </properties>
24 <url>https://github.com/google/flatbuffers</url>
25 <licenses>
26 <license>
27 <name>Apache License V2.0</name>
28 <url>https://raw.githubusercontent.com/google/flatbuffers/master/LICENSE.txt</url>
29 <distribution>repo</distribution>
30 </license>
31 </licenses>
32 <scm>
33 <url>https://github.com/google/flatbuffers</url>
34 <connection>
35 scm:git:https://github.com/google/flatbuffers.git
36 </connection>
37 <tag>HEAD</tag>
38 </scm>
39 <dependencies>
Austin Schuh2dd86a92022-09-14 21:19:23 -070040 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
43 <version>4.13.1</version>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>com.google.truth</groupId>
48 <artifactId>truth</artifactId>
49 <version>1.1.3</version>
50 <scope>test</scope>
51 </dependency>
Austin Schuhe89fa2d2019-08-14 20:24:23 -070052 </dependencies>
53 <distributionManagement>
54 <snapshotRepository>
55 <id>ossrh</id>
56 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
57 </snapshotRepository>
58 </distributionManagement>
59 <build>
Austin Schuh2dd86a92022-09-14 21:19:23 -070060 <plugins>
James Kuszmaul3b15b0c2022-11-08 14:03:16 -080061 <plugin>
62 <artifactId>maven-compiler-plugin</artifactId>
63 <configuration>
64 <release>8</release>
65 <testExcludes>
66 <testExclude>MyGame/Example/MonsterStorageGrpc.java</testExclude>
67 <testExclude>MyGame/OtherNameSpace/TableBT.java</testExclude>
68 </testExcludes>
69 </configuration>
70 <version>3.8.1</version>
71 </plugin>
Austin Schuh2dd86a92022-09-14 21:19:23 -070072 </plugins>
Austin Schuhe89fa2d2019-08-14 20:24:23 -070073 </build>
James Kuszmaul8e62b022022-03-22 09:33:25 -070074 <profiles>
75 <profile>
76 <id>jdk9</id>
77 <activation>
78 <jdk>[1.9,)</jdk>
79 </activation>
80 <build>
81 <plugins>
82 <plugin>
James Kuszmaul8e62b022022-03-22 09:33:25 -070083 <artifactId>maven-surefire-plugin</artifactId>
84 <configuration>
85 <includes>
86 <include>**/*Test.java</include>
87 </includes>
88 </configuration>
89 <version>2.22.2</version>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-source-plugin</artifactId>
94 <version>3.2.1</version>
95 <executions>
96 <execution>
97 <id>attach-sources</id>
98 <goals>
99 <goal>jar</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-javadoc-plugin</artifactId>
107 <version>3.3.0</version>
108 <configuration>
109 <additionalparam>-Xdoclint:none</additionalparam>
110 <additionalOptions>-Xdoclint:none</additionalOptions>
111 </configuration>
112 <executions>
113 <execution>
114 <id>attach-javadocs</id>
115 <goals>
116 <goal>jar</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-bundle-plugin</artifactId>
124 <version>5.1.2</version>
125 <extensions>true</extensions>
126 </plugin>
127 <plugin>
128 <groupId>org.sonatype.plugins</groupId>
129 <artifactId>nexus-staging-maven-plugin</artifactId>
130 <version>1.6.8</version>
131 <extensions>true</extensions>
132 <configuration>
133 <serverId>ossrh</serverId>
134 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
135 <autoReleaseAfterClose>true</autoReleaseAfterClose>
136 </configuration>
137 </plugin>
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-gpg-plugin</artifactId>
141 <version>3.0.1</version>
142 <executions>
143 <execution>
144 <id>sign-artifacts</id>
145 <phase>verify</phase>
146 <goals>
147 <goal>sign</goal>
148 </goals>
149 <configuration>
James Kuszmaul3b15b0c2022-11-08 14:03:16 -0800150 <gpgArguments>
151 <arg>--pinentry-mode</arg>
152 <arg>loopback</arg>
153 </gpgArguments>
James Kuszmaul8e62b022022-03-22 09:33:25 -0700154 </configuration>
155 </execution>
156 </executions>
157 </plugin>
158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-release-plugin</artifactId>
161 <version>2.5.3</version>
162 <configuration>
163 <autoVersionSubmodules>true</autoVersionSubmodules>
164 <useReleaseProfile>false</useReleaseProfile>
165 <releaseProfiles>release</releaseProfiles>
166 <goals>deploy</goals>
167 </configuration>
168 </plugin>
169 </plugins>
170 </build>
171 </profile>
172 </profiles>
Austin Schuhe89fa2d2019-08-14 20:24:23 -0700173</project>