Commits
md_5 authored 6ed0a976e5e
91 91 | <version>1.3</version> |
92 92 | <scope>test</scope> |
93 93 | </dependency> |
94 94 | </dependencies> |
95 95 | |
96 96 | <build> |
97 97 | <plugins> |
98 98 | <plugin> |
99 99 | <groupId>org.apache.maven.plugins</groupId> |
100 100 | <artifactId>maven-compiler-plugin</artifactId> |
101 - | <!-- versions after this appear to be broken --> |
102 - | <version>3.1</version> |
101 + | <version>3.6.1</version> |
103 102 | <configuration> |
104 103 | <!-- we use the Eclipse compiler as it doesn't need a JDK --> |
105 104 | <compilerId>eclipse</compilerId> |
106 - | <!-- source and target are ignored if this isn't true --> |
107 - | <optimize>true</optimize> |
108 105 | </configuration> |
109 106 | <dependencies> |
110 107 | <!-- we need our custom version as it fixes some bugs on case sensitive file systems --> |
111 108 | <dependency> |
112 109 | <groupId>org.codehaus.plexus</groupId> |
113 110 | <artifactId>plexus-compiler-eclipse</artifactId> |
114 - | <version>2.5.0-spigotmc</version> |
111 + | <version>2.8.1-spigotmc</version> |
115 112 | </dependency> |
116 113 | </dependencies> |
117 114 | </plugin> |
118 115 | <plugin> |
119 116 | <groupId>org.codehaus.mojo</groupId> |
120 117 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
121 118 | <version>1.15</version> |
122 119 | <executions> |
123 120 | <execution> |
124 121 | <phase>process-classes</phase> |
131 128 | <signature> |
132 129 | <groupId>org.codehaus.mojo.signature</groupId> |
133 130 | <artifactId>java16</artifactId> |
134 131 | <version>1.1</version> |
135 132 | </signature> |
136 133 | </configuration> |
137 134 | </plugin> |
138 135 | <plugin> |
139 136 | <groupId>org.apache.maven.plugins</groupId> |
140 137 | <artifactId>maven-shade-plugin</artifactId> |
141 - | <version>2.4.3</version> |
138 + | <version>3.0.0</version> |
142 139 | <executions> |
143 140 | <execution> |
144 141 | <phase>package</phase> |
145 142 | <goals> |
146 143 | <goal>shade</goal> |
147 144 | </goals> |
148 145 | </execution> |
149 146 | </executions> |
150 147 | <configuration> |
151 148 | <!-- utterly useless artifact from shade 2.x --> |