File tree 2 files changed +58
-9
lines changed
2 files changed +58
-9
lines changed Original file line number Diff line number Diff line change
1
+ open module com .drew .imaging {
2
+ requires xmpcore ;
3
+ }
Original file line number Diff line number Diff line change 88
88
<javadoc .opts>-Xdoclint:none</javadoc .opts>
89
89
</properties >
90
90
</profile >
91
+ <profile >
92
+ <id >build-module-info-disabled</id >
93
+ <activation >
94
+ <jdk >(,1.8]</jdk >
95
+ </activation >
96
+ <build >
97
+ <plugins >
98
+ <plugin >
99
+ <groupId >org.apache.maven.plugins</groupId >
100
+ <artifactId >maven-compiler-plugin</artifactId >
101
+ <version >3.8.1</version >
102
+ <configuration >
103
+ <source >1.7</source >
104
+ <target >1.7</target >
105
+ <excludes >
106
+ <exclude >module-info.java</exclude >
107
+ </excludes >
108
+ </configuration >
109
+ </plugin >
110
+ </plugins >
111
+ </build >
112
+ </profile >
113
+ <profile >
114
+ <id >build-module-info</id >
115
+ <activation >
116
+ <jdk >[9,)</jdk >
117
+ </activation >
118
+ <build >
119
+ <plugins >
120
+ <plugin >
121
+ <groupId >org.apache.maven.plugins</groupId >
122
+ <artifactId >maven-compiler-plugin</artifactId >
123
+ <version >3.11.0</version >
124
+ <configuration >
125
+ <release >7</release >
126
+ </configuration >
127
+ <executions >
128
+ <execution >
129
+ <id >default-compile</id >
130
+ <configuration >
131
+ <release >9</release >
132
+ </configuration >
133
+ </execution >
134
+ <execution >
135
+ <id >base-compile</id >
136
+ <goals ><goal >compile</goal ></goals >
137
+ <configuration >
138
+ <excludes ><exclude >module-info.java</exclude ></excludes >
139
+ </configuration >
140
+ </execution >
141
+ </executions >
142
+ </plugin >
143
+ </plugins >
144
+ </build >
145
+ </profile >
91
146
</profiles >
92
147
93
148
<build >
114
169
</execution >
115
170
</executions >
116
171
</plugin >
117
- <plugin >
118
- <groupId >org.apache.maven.plugins</groupId >
119
- <artifactId >maven-compiler-plugin</artifactId >
120
- <version >3.8.1</version >
121
- <configuration >
122
- <source >1.7</source >
123
- <target >1.7</target >
124
- </configuration >
125
- </plugin >
126
172
<plugin >
127
173
<groupId >org.apache.maven.plugins</groupId >
128
174
<artifactId >maven-surefire-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments