File tree Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 8
8
<artifactId >avaje-inject-prism</artifactId >
9
9
<build >
10
10
<plugins >
11
+ <!--
11
12
<plugin>
12
13
<groupId>org.apache.maven.plugins</groupId>
13
14
<artifactId>maven-jar-plugin</artifactId>
24
25
</execution>
25
26
</executions>
26
27
</plugin>
28
+ -->
29
+ <plugin >
30
+ <artifactId >maven-compiler-plugin</artifactId >
31
+ <configuration >
32
+ <annotationProcessorPaths >
33
+ <annotationProcessorPath >
34
+ <groupId >com.jolira</groupId >
35
+ <artifactId >hickory</artifactId >
36
+ <version >1.0.0</version >
37
+ </annotationProcessorPath >
38
+ </annotationProcessorPaths >
39
+ </configuration >
40
+ </plugin >
41
+ <plugin >
42
+ <groupId >org.moditect</groupId >
43
+ <artifactId >moditect-maven-plugin</artifactId >
44
+ <version >1.0.0.RC2</version >
45
+ <executions >
46
+ <execution >
47
+ <id >add-module-infos</id >
48
+ <phase >package</phase >
49
+ <goals >
50
+ <goal >add-module-info</goal >
51
+ </goals >
52
+ <configuration >
53
+ <overwriteExistingFiles >true</overwriteExistingFiles >
54
+ <module >
55
+ <moduleInfoFile >
56
+ src/main/java/module-info.moditect
57
+ </moduleInfoFile >
58
+ </module >
59
+ </configuration >
60
+ </execution >
61
+ </executions >
62
+ </plugin >
27
63
</plugins >
28
64
</build >
29
65
<dependencies >
Original file line number Diff line number Diff line change
1
+ module io .avaje .inject .prism {
2
+
3
+ exports io .avaje .inject .prism to io .avaje .inject .generator ;
4
+
5
+ requires static io .avaje .inject ;
6
+
7
+ requires static hickory ;
8
+
9
+ requires java .compiler ;
10
+
11
+ }
Original file line number Diff line number Diff line change
1
+ module io.avaje.inject.prism {
2
+
3
+ exports io.avaje.inject.prism to io.avaje.inject.generator;
4
+
5
+ requires java.compiler;
6
+
7
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments