Skip to content

Commit a60e95f

Browse files
committed
Merge pull request #1 from querydsl/pom
POM contents
2 parents e46fb54 + cb97276 commit a60e95f

File tree

2 files changed

+126
-0
lines changed

2 files changed

+126
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
*.iml

pom.xml

+124
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
<groupId>com.querydsl</groupId>
8+
<artifactId>querydsl-parent</artifactId>
9+
<version>0.1.0</version>
10+
<name>Querydsl Parent POM</name>
11+
<description>Parent project for Querydsl related projects</description>
12+
13+
<parent>
14+
<groupId>org.sonatype.oss</groupId>
15+
<artifactId>oss-parent</artifactId>
16+
<version>7</version>
17+
</parent>
18+
19+
<url>http://www.github.com/querydsl/querydsl-parent</url>
20+
<packaging>pom</packaging>
21+
22+
<inceptionYear>2015</inceptionYear>
23+
24+
<organization>
25+
<name>Querydsl</name>
26+
<url>http://www.querydsl.com</url>
27+
</organization>
28+
29+
<developers>
30+
<developer>
31+
<id>timowest</id>
32+
<name>Timo Westkämper</name>
33+
<roles>
34+
<role>Project Manager</role>
35+
<role>Architect</role>
36+
</roles>
37+
</developer>
38+
<developer>
39+
<id>Shredder121</id>
40+
<name>Ruben Dijkstra</name>
41+
<roles>
42+
<role>Developer</role>
43+
</roles>
44+
</developer>
45+
<developer>
46+
<id>johnktims</id>
47+
<name>John Tims</name>
48+
<roles>
49+
<role>Developer</role>
50+
</roles>
51+
</developer>
52+
</developers>
53+
54+
<licenses>
55+
<license>
56+
<name>Apache License, Version 2.0</name>
57+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
58+
</license>
59+
</licenses>
60+
61+
<scm>
62+
<connection>scm:git:[email protected]:querydsl/querydsl-parent.git</connection>
63+
<url>[email protected]:querydsl/querydsl-parent.git</url>
64+
</scm>
65+
66+
<properties>
67+
<gpg.skip>true</gpg.skip>
68+
</properties>
69+
70+
<build>
71+
<plugins>
72+
<plugin>
73+
<artifactId>maven-compiler-plugin</artifactId>
74+
<version>3.3</version>
75+
<configuration>
76+
<source>1.6</source>
77+
<target>1.6</target>
78+
</configuration>
79+
</plugin>
80+
<plugin>
81+
<artifactId>maven-source-plugin</artifactId>
82+
<version>2.4</version>
83+
<executions>
84+
<execution>
85+
<phase>package</phase>
86+
<goals>
87+
<goal>jar</goal>
88+
</goals>
89+
</execution>
90+
</executions>
91+
</plugin>
92+
<plugin>
93+
<artifactId>maven-javadoc-plugin</artifactId>
94+
<version>2.10.3</version>
95+
<executions>
96+
<execution>
97+
<phase>package</phase>
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-gpg-plugin</artifactId>
107+
<version>1.6</version>
108+
<executions>
109+
<execution>
110+
<id>sign-artifacts</id>
111+
<phase>verify</phase>
112+
<goals>
113+
<goal>sign</goal>
114+
</goals>
115+
<configuration>
116+
<skip>${gpg.skip}</skip>
117+
</configuration>
118+
</execution>
119+
</executions>
120+
</plugin>
121+
</plugins>
122+
</build>
123+
124+
</project>

0 commit comments

Comments
 (0)