blob: ab5ad47fae2cce01de2e2322fabb84328cbc79dc [file] [log] [blame]
Daniel Qian48302a22014-06-10 13:07:58 +08001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>com.ekingstar.hibernate</groupId>
7 <artifactId>hql-builder</artifactId>
8 <version>1.0.0</version>
9 <name>HQL Builder</name>
10 <properties>
11 <mockito.version>1.9.5</mockito.version>
12 <testng.version>6.5.2</testng.version>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <downloadJavadocs>true</downloadJavadocs>
15 <logback.version>1.0.7</logback.version>
16 <slf4j.version>1.6.6</slf4j.version>
17 </properties>
18 <distributionManagement>
19 <repository>
20 <id>ekingstar-releases</id>
21 <name>internal release</name>
22 <url>http://app.supwisdom.com:81/artifactory/libs-release-local</url>
23 </repository>
24 <snapshotRepository>
25 <id>ekingstar-snapshots</id>
26 <name>internal Snapshots</name>
27 <url>http://app.supwisdom.com:81/artifactory/libs-snapshot-local</url>
28 </snapshotRepository>
29 <downloadUrl>http://app.supwisdom.com:81/artifactory</downloadUrl>
30 </distributionManagement>
31 <dependencyManagement>
32 <dependencies>
33 <dependency>
34 <groupId>org.slf4j</groupId>
35 <artifactId>slf4j-api</artifactId>
36 <version>1.6.6</version>
37 </dependency>
38 <dependency>
39 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-core</artifactId>
41 <version>1.0.7</version>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>ch.qos.logback</groupId>
46 <artifactId>logback-classic</artifactId>
47 <version>1.0.7</version>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.mockito</groupId>
52 <artifactId>mockito-all</artifactId>
53 <version>1.9.5</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.testng</groupId>
58 <artifactId>testng</artifactId>
59 <version>6.5.2</version>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.ekingstar.commons</groupId>
64 <artifactId>commons</artifactId>
65 <version>1.0.0</version>
66 </dependency>
67 </dependencies>
68 </dependencyManagement>
69 <dependencies>
70 <dependency>
71 <groupId>com.ekingstar.commons</groupId>
72 <artifactId>commons</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>net.sf.jxls</groupId>
76 <artifactId>jxls-core</artifactId>
77 <version>1.0.3</version>
78 <scope>compile</scope>
79 <optional>true</optional>
80 </dependency>
81 <dependency>
82 <groupId>org.slf4j</groupId>
83 <artifactId>slf4j-api</artifactId>
84 <version>1.6.6</version>
85 <scope>compile</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.testng</groupId>
89 <artifactId>testng</artifactId>
90 <version>6.5.2</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.mockito</groupId>
95 <artifactId>mockito-all</artifactId>
96 <version>1.9.5</version>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>ch.qos.logback</groupId>
101 <artifactId>logback-core</artifactId>
102 <version>1.0.7</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>ch.qos.logback</groupId>
107 <artifactId>logback-classic</artifactId>
108 <version>1.0.7</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.hibernate</groupId>
113 <artifactId>hibernate-core</artifactId>
114 <version>4.2.4.Final</version>
115 <scope>provided</scope>
116 </dependency>
117 </dependencies>
118 <build>
119 <plugins>
120 <plugin>
121 <artifactId>maven-compiler-plugin</artifactId>
122 <version>3.0</version>
123 <configuration>
124 <source>1.6</source>
125 <target>1.6</target>
126 <encoding>UTF-8</encoding>
127 </configuration>
128 </plugin>
129 <plugin>
130 <artifactId>maven-source-plugin</artifactId>
131 <executions>
132 <execution>
133 <id>attach-sources</id>
134 <phase>deploy</phase>
135 <goals>
136 <goal>jar-no-fork</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
141 <plugin>
142 <artifactId>maven-javadoc-plugin</artifactId>
143 <executions>
144 <execution>
145 <id>attach-javadocs</id>
146 <phase>deploy</phase>
147 <goals>
148 <goal>jar</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153 <plugin>
154 <!-- explicitly define maven-deploy-plugin after other to force exec
155 order -->
156 <artifactId>maven-deploy-plugin</artifactId>
157 <executions>
158 <execution>
159 <id>deploy</id>
160 <phase>deploy</phase>
161 <goals>
162 <goal>deploy</goal>
163 </goals>
164 </execution>
165 </executions>
166 </plugin>
167 </plugins>
168 </build>
169
170</project>
171