File tree Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,10 @@ hs_err_pid*
14
14
.settings
15
15
.classpath
16
16
.project
17
+
18
+ # IntelliJ Settings Files #
19
+ .idea /
20
+ out /
21
+ .idea_modules /
22
+ * .iml
23
+ * .iws
Original file line number Diff line number Diff line change 84
84
<plugin >
85
85
<artifactId >maven-compiler-plugin</artifactId >
86
86
<version >3.7.0</version >
87
+ <executions >
88
+ <execution >
89
+ <id >default-compile</id >
90
+ <configuration >
91
+ <release >9</release >
92
+ <includes >
93
+ <include >module-info.java</include >
94
+ </includes >
95
+ </configuration >
96
+ </execution >
97
+ <execution >
98
+ <id >base-compile</id >
99
+ <goals >
100
+ <goal >compile</goal >
101
+ </goals >
102
+ <configuration >
103
+ <excludes >
104
+ <exclude >module-info.java</exclude >
105
+ </excludes >
106
+ </configuration >
107
+ </execution >
108
+ </executions >
87
109
<configuration >
88
- <source >1.7 </source >
110
+ <source >9 </source >
89
111
<target >1.7</target >
90
112
<release >7</release >
91
113
<encoding >UTF-8</encoding >
98
120
<configuration >
99
121
<archive >
100
122
<manifestEntries >
123
+ <Multi-Release >true</Multi-Release >
101
124
<Sealed >true</Sealed >
102
125
</manifestEntries >
103
126
</archive >
117
140
<keepDependenciesWithProvidedScope >false</keepDependenciesWithProvidedScope >
118
141
<createDependencyReducedPom >false</createDependencyReducedPom >
119
142
<createSourcesJar >false</createSourcesJar >
143
+ <transformers >
144
+ <!-- re-add module-info.class -->
145
+ <transformer implementation =" org.apache.maven.plugins.shade.resource.IncludeResourceTransformer" >
146
+ <resource >module-info.class</resource >
147
+ <file >${project.build.outputDirectory} /module-info.class</file >
148
+ </transformer >
149
+ </transformers >
120
150
<artifactSet >
121
151
<includes >
122
152
<include >org.bouncycastle:bcprov-jdk15on</include >
Original file line number Diff line number Diff line change
1
+ module org .cryptomator .siv {
2
+ requires static bcprov .jdk15on ;
3
+
4
+ exports org .cryptomator .siv ;
5
+ }
You can’t perform that action at this time.
0 commit comments