-
Notifications
You must be signed in to change notification settings - Fork 19
/
pom.xml
164 lines (141 loc) · 6.29 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zeroturnaround.rebellabs</groupId>
<artifactId>ocean-of-memories</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Ocean Of Memories Article Series For ZeroTurnaround Rebel Labs</name>
<url>https://github.com/serkan-ozal/ocean-of-memories</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<source.compiler.version>1.7</source.compiler.version>
<target.compiler.version>1.7</target.compiler.version>
<maven.compiler.plugin.version>2.3.2</maven.compiler.plugin.version>
<maven.resources.plugin.version>2.4</maven.resources.plugin.version>
<maven.surefire.plugin.version>2.9</maven.surefire.plugin.version>
<maven.shade.plugin.version>2.0</maven.shade.plugin.version>
<tools.version>1.7</tools.version>
<log4j.version>1.2.16</log4j.version>
<guava.version>13.0</guava.version>
<commons.lang.version>2.6</commons.lang.version>
<jmh.version>0.9.7</jmh.version>
</properties>
<build>
<finalName>ocean-of-memories</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${source.compiler.version}</source>
<target>${target.compiler.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<executable>${env.JAVA7_HOME}/bin/javac</executable>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.plugin.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>ocean-of-memories-benchmarks</finalName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.openjdk.jmh.Main</mainClass>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/services/javax.annotation.processing.Processor</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<!-- Java tools.jar -->
<!-- ============================================ -->
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${tools.version}</version>
</dependency>
<!-- ============================================ -->
<!-- JMH -->
<!-- ============================================ -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
</dependency>
<!-- ============================================ -->
<!-- logging -->
<!-- ============================================ -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- ============================================ -->
<!-- utility -->
<!-- ============================================ -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<!-- ============================================ -->
</dependencies>
<repositories>
<repository>
<id>nexus-maven-repository</id>
<url>https://maven-us.nuxeo.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>my-maven-repository</id>
<url>https://github.com/serkan-ozal/maven-repository/raw/master/</url>
</repository>
</repositories>
</project>