|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.jlab.coda</groupId> |
4 | 4 | <artifactId>jevio</artifactId> |
5 | | - <version>6.0.0</version> |
| 5 | + <version>6.1.0</version> <!-- JEVIO version tag --> |
6 | 6 | <name>Jefferson Lab EVIO Java Library (JEVIO)</name> |
7 | 7 | <description>Java library for EVIO (Event Input/Output)</description> |
8 | 8 | <packaging>jar</packaging> |
|
13 | 13 | <!-- SOFTWARE VERSIONS USED --> |
14 | 14 | <properties> |
15 | 15 | <!-- Set Java version --> |
16 | | - <java.version>15</java.version> <!-- Compatibility: if Java 8 desired, put 1.8 here (not 8) --> |
| 16 | + <java.version>17</java.version> <!-- Compatibility: if Java 8 desired, put 1.8 here (not 8) --> |
17 | 17 | <maven.compiler.source>${java.version}</maven.compiler.source> |
18 | 18 | <maven.compiler.target>${java.version}</maven.compiler.target> |
19 | 19 | <!-- Dependencies (versions for jars we'll need to bring in) --> |
|
42 | 42 | <version>${lz4.version}</version> |
43 | 43 | </dependency> |
44 | 44 | <!-- LMAX Disruptor (for ring buffer concurrency) --> |
| 45 | + <!-- WARNING: we're assuming it finds the java/jars folder with the JLab forked version --> |
| 46 | + <!-- else it will try to download from generic maven repo and fail! --> |
45 | 47 | <dependency> |
46 | 48 | <groupId>com.lmax</groupId> |
47 | 49 | <artifactId>disruptor</artifactId> |
|
58 | 60 |
|
59 | 61 |
|
60 | 62 | <build> |
61 | | - <!-- <sourceDirectory>${project.basedir}/java</sourceDirectory> --> |
62 | 63 | <plugins> |
63 | 64 |
|
64 | 65 | <!-- Install disruptor jar --> |
|
85 | 86 | </executions> |
86 | 87 | </plugin> |
87 | 88 |
|
88 | | - <!-- Add sources in non-standard folder setup --> |
89 | | - <!-- <plugin> |
90 | | - <groupId>org.codehaus.mojo</groupId> |
91 | | - <artifactId>build-helper-maven-plugin</artifactId> |
92 | | - <version>3.6.0</version> |
93 | | - <executions> |
94 | | - <execution> |
95 | | - <id>add-jevio-tests</id> |
96 | | - <phase>generate-test-sources</phase> |
97 | | - <goals> |
98 | | - <goal>add-test-source</goal> |
99 | | - </goals> |
100 | | - <configuration> |
101 | | - <sources> |
102 | | - <source>etc/java/org/jlab/coda/jevio/test</source> |
103 | | - </sources> |
104 | | - </configuration> |
105 | | - </execution> |
106 | | - </executions> |
107 | | - </plugin> --> |
108 | | - |
109 | 89 | <!-- Make the fat jar file --> |
110 | 90 | <plugin> |
111 | 91 | <artifactId>maven-assembly-plugin</artifactId> |
112 | | - <version>3.6.0</version> <!-- upgrade to latest --> |
| 92 | + <version>3.6.0</version> |
113 | 93 | <configuration> |
114 | | - <!-- <appendAssemblyId>false</appendAssemblyId> --> |
115 | 94 | <descriptorRefs> |
116 | 95 | <descriptorRef>jar-with-dependencies</descriptorRef> |
117 | 96 | </descriptorRefs> |
|
0 commit comments