blob: db3f778b5d6dae0920095dece663dc04826fe0ee [file] [log] [blame]
Patrick Julien1263e972015-01-10 18:13:37 -05001<?xml version="1.0" encoding="UTF-8"?>
Haibo Huangb9f6b1a2020-03-16 15:41:29 -07002<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">
Patrick Julien1263e972015-01-10 18:13:37 -05003 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.google.flatbuffers</groupId>
Romain Gillescc2b04c2016-07-05 11:38:17 +02005 <artifactId>flatbuffers-java</artifactId>
Haibo Huangb9f6b1a2020-03-16 15:41:29 -07006 <version>1.12.0</version>
Romain Gilles9605dc52016-07-15 14:34:56 +02007 <packaging>bundle</packaging>
Romain Gillescc2b04c2016-07-05 11:38:17 +02008 <name>FlatBuffers Java API</name>
Patrick Julien1263e972015-01-10 18:13:37 -05009 <description>
10 Memory Efficient Serialization Library
11 </description>
Wouter van Oortmerssenf3f113b2017-10-26 16:13:04 -070012 <developers>
13 <developer>
14 <name>Wouter van Oortmerssen</name>
15 </developer>
16 </developers>
Patrick Julien1263e972015-01-10 18:13:37 -050017 <properties>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19 </properties>
Patrick Julien1263e972015-01-10 18:13:37 -050020 <url>https://github.com/google/flatbuffers</url>
21 <licenses>
22 <license>
23 <name>Apache License V2.0</name>
24 <url>https://raw.githubusercontent.com/google/flatbuffers/master/LICENSE.txt</url>
25 <distribution>repo</distribution>
26 </license>
27 </licenses>
28 <scm>
29 <url>https://github.com/google/flatbuffers</url>
30 <connection>
31 scm:git:https://github.com/google/flatbuffers.git
32 </connection>
Haibo Huangb9f6b1a2020-03-16 15:41:29 -070033 <tag>HEAD</tag>
Patrick Julien1263e972015-01-10 18:13:37 -050034 </scm>
Romain Gillescc2b04c2016-07-05 11:38:17 +020035 <dependencies>
36 </dependencies>
Wouter van Oortmerssenf3f113b2017-10-26 16:13:04 -070037 <distributionManagement>
38 <snapshotRepository>
39 <id>ossrh</id>
40 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
41 </snapshotRepository>
42 </distributionManagement>
Patrick Julien1263e972015-01-10 18:13:37 -050043 <build>
Romain Gilles7a955a02016-07-05 14:29:12 +020044 <sourceDirectory>java</sourceDirectory>
Patrick Julien1263e972015-01-10 18:13:37 -050045 <plugins>
46 <plugin>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
Kamil Rojewskif11ffed2018-05-14 20:12:24 +020049 <source>1.8</source>
50 <target>1.8</target>
Patrick Julien1263e972015-01-10 18:13:37 -050051 </configuration>
52 <version>3.2</version>
53 </plugin>
54 <plugin>
55 <artifactId>maven-surefire-plugin</artifactId>
56 <configuration>
57 <includes>
58 <include>**/*Test.java</include>
59 </includes>
60 </configuration>
61 <version>2.18.1</version>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-source-plugin</artifactId>
66 <version>2.3</version>
67 <executions>
68 <execution>
69 <id>attach-sources</id>
70 <goals>
71 <goal>jar</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-javadoc-plugin</artifactId>
79 <version>2.9.1</version>
Owen O'Malleycb991162018-12-17 13:53:49 -080080 <configuration>
81 <additionalparam>-Xdoclint:none</additionalparam>
82 <additionalOptions>-Xdoclint:none</additionalOptions>
83 </configuration>
Patrick Julien1263e972015-01-10 18:13:37 -050084 <executions>
85 <execution>
86 <id>attach-javadocs</id>
87 <goals>
88 <goal>jar</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
Romain Gilles9605dc52016-07-15 14:34:56 +020093 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <version>3.0.1</version>
97 <extensions>true</extensions>
98 </plugin>
Wouter van Oortmerssenf3f113b2017-10-26 16:13:04 -070099 <plugin>
100 <groupId>org.sonatype.plugins</groupId>
101 <artifactId>nexus-staging-maven-plugin</artifactId>
102 <version>1.6.7</version>
103 <extensions>true</extensions>
104 <configuration>
105 <serverId>ossrh</serverId>
106 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
107 <autoReleaseAfterClose>true</autoReleaseAfterClose>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-gpg-plugin</artifactId>
113 <version>1.5</version>
114 <executions>
115 <execution>
116 <id>sign-artifacts</id>
117 <phase>verify</phase>
118 <goals>
119 <goal>sign</goal>
120 </goals>
121 </execution>
122 </executions>
123 </plugin>
124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-release-plugin</artifactId>
127 <version>2.5.3</version>
128 <configuration>
129 <autoVersionSubmodules>true</autoVersionSubmodules>
130 <useReleaseProfile>false</useReleaseProfile>
131 <releaseProfiles>release</releaseProfiles>
132 <goals>deploy</goals>
133 </configuration>
134 </plugin>
Patrick Julien1263e972015-01-10 18:13:37 -0500135 </plugins>
136 </build>
137</project>
138