1<?xml version="1.0" encoding="UTF-8"?>
2<project
3  xmlns="http://maven.apache.org/POM/4.0.0"
4  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6<modelVersion>4.0.0</modelVersion>
7
8<groupId>@JAVA_PACKAGE@</groupId>
9<artifactId>@JAVA_NATIVE_PROJECT@</artifactId>
10<version>@PROJECT_VERSION@</version>
11<packaging>jar</packaging>
12
13<name>${project.groupId}:${project.artifactId}</name>
14<description>Google OR-Tools Java project.</description>
15<url>https://github.com/google/or-tools</url>
16
17<licenses>
18  <license>
19    <name>The Apache License, Version 2.0</name>
20    <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
21  </license>
22</licenses>
23
24<developers>
25  <developer>
26    <name>Corentin "Mizux" Le Molgat</name>
27    <email>corentinl@google.com</email>
28    <organization>Google LLC</organization>
29    <organizationUrl>http://www.google.com</organizationUrl>
30  </developer>
31  <developer>
32    <name>Laurent Perron</name>
33    <email>lperron@google.com</email>
34    <organization>Google LLC</organization>
35    <organizationUrl>http://www.google.com</organizationUrl>
36  </developer>
37</developers>
38
39<scm>
40  <connection>scm:git:git://github.com/google/or-tools.git</connection>
41  <developerConnection>scm:git:ssh://github.com:google/or-tools.git</developerConnection>
42  <url>http://github.com/google/or-tools/tree/master</url>
43  <tag>HEAD</tag>
44</scm>
45
46<issueManagement>
47  <system>GitHub Issues</system>
48  <url>http://github.com/google/or-tools/issues</url>
49</issueManagement>
50
51<distributionManagement>
52  <snapshotRepository>
53    <id>ossrh</id>
54    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
55  </snapshotRepository>
56  <repository>
57    <id>ossrh</id>
58    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
59  </repository>
60</distributionManagement>
61
62<properties>
63  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
64  <maven.compiler.source>1.8</maven.compiler.source>
65  <maven.compiler.target>1.8</maven.compiler.target>
66</properties>
67
68<build>
69  <plugins>
70    <plugin>
71      <groupId>org.apache.maven.plugins</groupId>
72      <artifactId>maven-source-plugin</artifactId>
73      <version>3.2.0</version>
74      <configuration>
75        <excludes>
76          <exclude>**/*.cxx</exclude>
77        </excludes>
78      </configuration>
79      <executions>
80        <execution>
81          <id>attach-sources</id>
82          <goals>
83            <goal>jar-no-fork</goal>
84          </goals>
85        </execution>
86      </executions>
87    </plugin>
88    <plugin>
89      <groupId>org.apache.maven.plugins</groupId>
90      <artifactId>maven-javadoc-plugin</artifactId>
91      <version>3.2.0</version>
92      <configuration>
93        <detectJavaApiLink>false</detectJavaApiLink>
94        <source>${maven.compiler.source}</source>
95        <target>${maven.compiler.target}</target>
96        <additionalJOption>-Xdoclint:none</additionalJOption>
97      </configuration>
98      <executions>
99        <execution>
100          <id>attach-javadocs</id>
101          <goals>
102            <goal>javadoc-no-fork</goal>
103          </goals>
104        </execution>
105      </executions>
106    </plugin>
107    <plugin>
108      <groupId>org.apache.maven.plugins</groupId>
109      <artifactId>maven-gpg-plugin</artifactId>
110      <version>1.6</version>
111      <executions>
112        <execution>
113          <id>sign-artifacts</id>
114          <phase>verify</phase>
115          <goals>
116            <goal>sign</goal>
117          </goals>
118          <configuration>
119            <gpgArguments>
120              @GPG_ARGS@
121            </gpgArguments>
122          </configuration>
123        </execution>
124      </executions>
125    </plugin>
126  </plugins>
127</build>
128</project>
129