|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>com.linkedin.parseq</groupId> |
6 | 6 | <artifactId>parseq-benchmark</artifactId> |
7 | | - <version>2.6.9</version> |
| 7 | + <version>2.6.10</version> |
8 | 8 | <packaging>jar</packaging> |
9 | 9 |
|
10 | 10 | <prerequisites> |
|
13 | 13 |
|
14 | 14 | <dependencies> |
15 | 15 | <dependency> |
16 | | - <groupId>org.openjdk.jmh</groupId> |
17 | | - <artifactId>jmh-core</artifactId> |
18 | | - <version>${jmh.version}</version> |
| 16 | + <groupId>com.linkedin.parseq</groupId> |
| 17 | + <artifactId>parseq</artifactId> |
| 18 | + <version>2.6.10</version> |
19 | 19 | </dependency> |
20 | 20 | <dependency> |
21 | | - <groupId>org.openjdk.jmh</groupId> |
22 | | - <artifactId>jmh-generator-annprocess</artifactId> |
23 | | - <version>${jmh.version}</version> |
24 | | - <scope>provided</scope> |
| 21 | + <groupId>com.linkedin.parseq</groupId> |
| 22 | + <artifactId>parseq-batching</artifactId> |
| 23 | + <version>2.6.10</version> |
25 | 24 | </dependency> |
26 | 25 | <dependency> |
27 | | - <groupId>com.linkedin.parseq</groupId> |
28 | | - <artifactId>parseq</artifactId> |
29 | | - <version>2.6.9</version> |
| 26 | + <groupId>org.hdrhistogram</groupId> |
| 27 | + <artifactId>HdrHistogram</artifactId> |
| 28 | + <version>2.1.8</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.slf4j</groupId> |
| 32 | + <artifactId>slf4j-simple</artifactId> |
| 33 | + <version>1.7.12</version> |
30 | 34 | </dependency> |
31 | 35 | </dependencies> |
32 | 36 |
|
33 | | - <properties> |
34 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
35 | | - <jmh.version>1.10.3</jmh.version> |
36 | | - <javac.target>1.8</javac.target> |
37 | | - <uberjar.name>benchmarks</uberjar.name> |
38 | | - </properties> |
39 | | - |
40 | 37 | <build> |
41 | 38 | <plugins> |
42 | 39 | <plugin> |
43 | 40 | <groupId>org.apache.maven.plugins</groupId> |
44 | 41 | <artifactId>maven-compiler-plugin</artifactId> |
45 | | - <version>3.1</version> |
| 42 | + <version>3.0</version> |
46 | 43 | <configuration> |
47 | | - <compilerVersion>${javac.target}</compilerVersion> |
48 | | - <source>${javac.target}</source> |
49 | | - <target>${javac.target}</target> |
| 44 | + <source>1.8</source> |
| 45 | + <target>1.8</target> |
| 46 | + <testSource>1.8</testSource> |
| 47 | + <testTarget>1.8</testTarget> |
50 | 48 | </configuration> |
51 | 49 | </plugin> |
52 | 50 | <plugin> |
53 | | - <groupId>org.apache.maven.plugins</groupId> |
54 | | - <artifactId>maven-shade-plugin</artifactId> |
55 | | - <version>2.2</version> |
| 51 | + <groupId>org.codehaus.mojo</groupId> |
| 52 | + <artifactId>exec-maven-plugin</artifactId> |
| 53 | + <version>1.1</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <goals> |
| 57 | + <goal>java</goal> |
| 58 | + </goals> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + <configuration> |
| 62 | + <mainClass>com.linkedin.parseq.PerfLarge</mainClass> |
| 63 | + </configuration> |
| 64 | + </plugin> |
| 65 | + <plugin> |
| 66 | + <artifactId>maven-assembly-plugin</artifactId> |
| 67 | + <version>2.4.1</version> |
| 68 | + <configuration> |
| 69 | + <descriptorRefs> |
| 70 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 71 | + </descriptorRefs> |
| 72 | + <archive> |
| 73 | + <manifest> |
| 74 | + <mainClass>com.linkedin.parseq.PerfLarge</mainClass> |
| 75 | + </manifest> |
| 76 | + </archive> |
| 77 | + </configuration> |
56 | 78 | <executions> |
57 | 79 | <execution> |
| 80 | + <id>make-assembly</id> |
58 | 81 | <phase>package</phase> |
59 | 82 | <goals> |
60 | | - <goal>shade</goal> |
| 83 | + <goal>single</goal> |
61 | 84 | </goals> |
62 | | - <configuration> |
63 | | - <finalName>${uberjar.name}</finalName> |
64 | | - <transformers> |
65 | | - <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
66 | | - <mainClass>org.openjdk.jmh.Main</mainClass> |
67 | | - </transformer> |
68 | | - </transformers> |
69 | | - <filters> |
70 | | - <filter> |
71 | | - <!-- |
72 | | - Shading signed JARs will fail without this. |
73 | | - http://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar |
74 | | - --> |
75 | | - <artifact>*:*</artifact> |
76 | | - <excludes> |
77 | | - <exclude>META-INF/*.SF</exclude> |
78 | | - <exclude>META-INF/*.DSA</exclude> |
79 | | - <exclude>META-INF/*.RSA</exclude> |
80 | | - </excludes> |
81 | | - </filter> |
82 | | - </filters> |
83 | | - </configuration> |
84 | 85 | </execution> |
85 | 86 | </executions> |
86 | 87 | </plugin> |
87 | 88 | </plugins> |
88 | | - <pluginManagement> |
89 | | - <plugins> |
90 | | - <plugin> |
91 | | - <artifactId>maven-clean-plugin</artifactId> |
92 | | - <version>2.5</version> |
93 | | - </plugin> |
94 | | - <plugin> |
95 | | - <artifactId>maven-deploy-plugin</artifactId> |
96 | | - <version>2.8.1</version> |
97 | | - </plugin> |
98 | | - <plugin> |
99 | | - <artifactId>maven-install-plugin</artifactId> |
100 | | - <version>2.5.1</version> |
101 | | - </plugin> |
102 | | - <plugin> |
103 | | - <artifactId>maven-jar-plugin</artifactId> |
104 | | - <version>2.4</version> |
105 | | - </plugin> |
106 | | - <plugin> |
107 | | - <artifactId>maven-javadoc-plugin</artifactId> |
108 | | - <version>2.9.1</version> |
109 | | - </plugin> |
110 | | - <plugin> |
111 | | - <artifactId>maven-resources-plugin</artifactId> |
112 | | - <version>2.6</version> |
113 | | - </plugin> |
114 | | - <plugin> |
115 | | - <artifactId>maven-site-plugin</artifactId> |
116 | | - <version>3.3</version> |
117 | | - </plugin> |
118 | | - <plugin> |
119 | | - <artifactId>maven-source-plugin</artifactId> |
120 | | - <version>2.2.1</version> |
121 | | - </plugin> |
122 | | - <plugin> |
123 | | - <artifactId>maven-surefire-plugin</artifactId> |
124 | | - <version>2.17</version> |
125 | | - </plugin> |
126 | | - </plugins> |
127 | | - </pluginManagement> |
128 | 89 | </build> |
129 | 90 |
|
130 | 91 | <name>parseq-benchmark</name> |
|
135 | 96 | </scm> |
136 | 97 | <description> |
137 | 98 | Set of benchmarks for ParSeq |
138 | | - </description> |
| 99 | + </description> |
139 | 100 | <licenses> |
140 | 101 | <license> |
141 | 102 | <name>The Apache Software License, Version 2.0</name> |
|
149 | 110 | <name>Jaroslaw Odzga</name> |
150 | 111 | <email>jodzga@linkedin.com</email> |
151 | 112 | </developer> |
152 | | - </developers> |
| 113 | + </developers> |
153 | 114 |
|
154 | 115 | </project> |
0 commit comments