|
45 | 45 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
46 | 46 | <maven.compiler.source>21</maven.compiler.source> |
47 | 47 | <maven.compiler.target>21</maven.compiler.target> |
48 | | - |
49 | | - <chicory.version>1.7.3</chicory.version> |
50 | 48 | <junit.version>6.0.3</junit.version> |
51 | 49 | </properties> |
52 | 50 |
|
|
56 | 54 | <module>wasm</module> |
57 | 55 | </modules> |
58 | 56 |
|
59 | | - <dependencyManagement> |
60 | | - <dependencies> |
61 | | - <dependency> |
62 | | - <groupId>org.apache.maven.plugins</groupId> |
63 | | - <artifactId>maven-gpg-plugin</artifactId> |
64 | | - <version>3.2.4</version> |
65 | | - </dependency> |
66 | | - <dependency> |
67 | | - <groupId>org.apache.maven.plugins</groupId> |
68 | | - <artifactId>maven-compiler-plugin</artifactId> |
69 | | - <version>3.15.0</version> |
70 | | - </dependency> |
71 | | - <dependency> |
72 | | - <groupId>org.apache.maven.plugins</groupId> |
73 | | - <artifactId>maven-source-plugin</artifactId> |
74 | | - <version>3.4.0</version> |
75 | | - </dependency> |
76 | | - <dependency> |
77 | | - <groupId>org.apache.maven.plugins</groupId> |
78 | | - <artifactId>maven-javadoc-plugin</artifactId> |
79 | | - <version>3.12.0</version> |
80 | | - </dependency> |
81 | | - <dependency> |
82 | | - <groupId>org.sonatype.central</groupId> |
83 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
84 | | - <version>0.7.0</version> |
85 | | - </dependency> |
86 | | - </dependencies> |
87 | | - </dependencyManagement> |
88 | | - |
89 | 57 | <profiles> |
90 | 58 | <profile> |
91 | 59 | <id>release</id> |
|
117 | 85 |
|
118 | 86 | <build> |
119 | 87 | <plugins> |
| 88 | + <plugin> |
| 89 | + <artifactId>maven-compiler-plugin</artifactId> |
| 90 | + <version>3.15.0</version> |
| 91 | + <configuration> |
| 92 | + <release>21</release> |
| 93 | + </configuration> |
| 94 | + </plugin> |
120 | 95 | <plugin> |
121 | 96 | <artifactId>maven-source-plugin</artifactId> |
| 97 | + <version>3.4.0</version> |
122 | 98 | <executions> |
123 | 99 | <execution> |
124 | 100 | <id>attach-sources</id> |
|
128 | 104 | </execution> |
129 | 105 | </executions> |
130 | 106 | </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.apache.maven.plugins</groupId> |
| 109 | + <artifactId>maven-surefire-plugin</artifactId> |
| 110 | + <version>3.5.5</version> |
| 111 | + </plugin> |
131 | 112 | <plugin> |
132 | 113 | <artifactId>maven-javadoc-plugin</artifactId> |
| 114 | + <version>3.12.0</version> |
133 | 115 | <executions> |
134 | 116 | <execution> |
135 | 117 | <id>attach-javadocs</id> |
|
0 commit comments