• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3  <modelVersion>4.0.0</modelVersion>
4
5  <groupId>org.brotli</groupId>
6  <artifactId>parent</artifactId>
7  <version>0.2.0-SNAPSHOT</version>
8  <packaging>pom</packaging>
9
10  <name>${project.groupId}:${project.artifactId}</name>
11  <description>Brotli is a generic-purpose lossless compression algorithm.</description>
12  <url>http://brotli.org</url>
13  <licenses>
14    <license>
15      <name>MIT License</name>
16      <url>http://www.opensource.org/licenses/mit-license.php</url>
17    </license>
18  </licenses>
19  <developers>
20    <developer>
21      <organization>Google</organization>
22      <organizationUrl>https://github.com/google</organizationUrl>
23    </developer>
24  </developers>
25  <scm>
26    <connection>scm:git:git://github.com/google/brotli.git</connection>
27    <developerConnection>scm:git:ssh://git@github.com/google/brotli.git</developerConnection>
28    <url>https://github.com/google/brotli</url>
29  </scm>
30
31  <modules>
32    <module>dec</module>
33  </modules>
34
35  <properties>
36    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37  </properties>
38
39  <distributionManagement>
40    <snapshotRepository>
41      <id>ossrh</id>
42      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
43    </snapshotRepository>
44  </distributionManagement>
45
46  <profiles>
47    <profile>
48      <id>release-sign-artifacts</id>
49      <activation>
50        <property>
51          <name>performRelease</name>
52          <value>true</value>
53        </property>
54      </activation>
55      <build>
56        <plugins>
57          <plugin>
58            <groupId>org.apache.maven.plugins</groupId>
59            <artifactId>maven-gpg-plugin</artifactId>
60            <version>1.5</version>
61            <executions>
62              <execution>
63                <id>sign-artifacts</id>
64                <phase>verify</phase>
65                <goals>
66                  <goal>sign</goal>
67                </goals>
68              </execution>
69            </executions>
70          </plugin>
71        </plugins>
72      </build>
73    </profile>
74  </profiles>
75
76  <build>
77    <plugins>
78      <plugin>
79        <groupId>org.apache.maven.plugins</groupId>
80        <artifactId>maven-compiler-plugin</artifactId>
81        <version>3.1</version>
82        <configuration>
83          <source>1.6</source>
84          <target>1.6</target>
85        </configuration>
86      </plugin>
87      <plugin>
88        <groupId>org.sonatype.plugins</groupId>
89        <artifactId>nexus-staging-maven-plugin</artifactId>
90        <version>1.6.7</version>
91        <extensions>true</extensions>
92        <configuration>
93          <serverId>ossrh</serverId>
94          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
95          <autoReleaseAfterClose>false</autoReleaseAfterClose>
96        </configuration>
97      </plugin>
98    </plugins>
99  </build>
100
101</project>
102