|
5 | 5 | <packaging>jar</packaging> |
6 | 6 | <artifactId>globs-generate</artifactId> |
7 | 7 | <name>Generic Lightweight ObjectS Asm generator</name> |
8 | | - <version>4.1.0</version> |
| 8 | + <version>5.0-SNAPSHOT</version> |
9 | 9 |
|
10 | 10 | <repositories> |
11 | 11 | <repository> |
|
29 | 29 | <artifactId>maven-compiler-plugin</artifactId> |
30 | 30 | <version>3.11.0</version> |
31 | 31 | <configuration> |
32 | | - <source>17</source> |
33 | | - <target>17</target> |
| 32 | + <source>21</source> |
| 33 | + <target>21</target> |
34 | 34 | </configuration> |
35 | 35 | </plugin> |
36 | 36 | <plugin> |
|
46 | 46 | </execution> |
47 | 47 | </executions> |
48 | 48 | </plugin> |
| 49 | + <plugin> |
| 50 | + <groupId>org.apache.maven.plugins</groupId> |
| 51 | + <artifactId>maven-compiler-plugin</artifactId> |
| 52 | + <configuration> |
| 53 | + <annotationProcessorPaths> |
| 54 | + <path> |
| 55 | + <groupId>org.openjdk.jmh</groupId> |
| 56 | + <artifactId>jmh-generator-annprocess</artifactId> |
| 57 | + <version>1.37</version> |
| 58 | + </path> |
| 59 | + </annotationProcessorPaths> |
| 60 | + </configuration> |
| 61 | + </plugin> |
49 | 62 | </plugins> |
50 | 63 | </build> |
51 | 64 |
|
52 | 65 | <dependencies> |
53 | 66 | <dependency> |
54 | 67 | <groupId>org.globsframework</groupId> |
55 | 68 | <artifactId>globs</artifactId> |
56 | | - <version>4.1.0</version> |
57 | | - </dependency> |
58 | | - <dependency> |
59 | | - <groupId>junit</groupId> |
60 | | - <artifactId>junit</artifactId> |
61 | | - <version>4.13.2</version> |
62 | | - <scope>test</scope> |
| 69 | + <version>5.0-SNAPSHOT</version> |
63 | 70 | </dependency> |
64 | 71 | <dependency> |
65 | 72 | <groupId>org.apache.logging.log4j</groupId> |
|
90 | 97 | <artifactId>asm-util</artifactId> |
91 | 98 | <version>9.4</version> |
92 | 99 | </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.globsframework</groupId> |
| 102 | + <artifactId>globs-bin-serialisation</artifactId> |
| 103 | + <version>4.5.0</version> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.junit.jupiter</groupId> |
| 108 | + <artifactId>junit-jupiter-api</artifactId> |
| 109 | + <version>5.10.3</version> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.junit.jupiter</groupId> |
| 114 | + <artifactId>junit-jupiter-engine</artifactId> |
| 115 | + <version>5.10.3</version> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>org.openjdk.jmh</groupId> |
| 120 | + <artifactId>jmh-java-benchmark-archetype</artifactId> |
| 121 | + <version>1.37</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.openjdk.jmh</groupId> |
| 126 | + <artifactId>jmh-core</artifactId> |
| 127 | + <version>1.37</version> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>com.esotericsoftware.kryo</groupId> |
| 132 | + <artifactId>kryo5</artifactId> |
| 133 | + <version>5.6.2</version> |
| 134 | + <scope>test</scope> |
| 135 | + </dependency> |
93 | 136 | </dependencies> |
94 | 137 |
|
95 | 138 | </project> |
0 commit comments