Commits
md_5 authored bb271409eb0
27 27 | <exclusions> |
28 28 | <exclusion> |
29 29 | <groupId>junit</groupId> |
30 30 | <artifactId>junit</artifactId> |
31 31 | </exclusion> |
32 32 | </exclusions> |
33 33 | </dependency> |
34 34 | <dependency> |
35 35 | <groupId>com.google.guava</groupId> |
36 36 | <artifactId>guava</artifactId> |
37 - | <version>31.0.1-jre</version> |
37 + | <version>32.1.2-jre</version> |
38 38 | <scope>compile</scope> |
39 39 | </dependency> |
40 40 | <dependency> |
41 41 | <groupId>net.sf.jopt-simple</groupId> |
42 42 | <artifactId>jopt-simple</artifactId> |
43 43 | <version>5.0.4</version> |
44 44 | <scope>compile</scope> |
45 45 | </dependency> |
46 46 | <dependency> |
47 47 | <groupId>org.eclipse.jgit</groupId> |
48 48 | <artifactId>org.eclipse.jgit</artifactId> |
49 - | <version>5.13.0.202109080827-r</version> |
49 + | <version>5.13.2.202306221912-r</version> |
50 50 | <scope>compile</scope> |
51 51 | </dependency> |
52 52 | <dependency> |
53 53 | <groupId>org.slf4j</groupId> |
54 54 | <artifactId>slf4j-jdk14</artifactId> |
55 55 | <version>1.7.30</version> |
56 56 | <scope>compile</scope> |
57 57 | </dependency> |
58 58 | <dependency> |
59 59 | <groupId>org.projectlombok</groupId> |
60 60 | <artifactId>lombok</artifactId> |
61 - | <version>1.18.20</version> |
61 + | <version>1.18.28</version> |
62 62 | <scope>provided</scope> |
63 63 | </dependency> |
64 64 | <dependency> |
65 65 | <groupId>commons-io</groupId> |
66 66 | <artifactId>commons-io</artifactId> |
67 - | <version>2.11.0</version> |
67 + | <version>2.13.0</version> |
68 68 | <scope>compile</scope> |
69 69 | </dependency> |
70 70 | <dependency> |
71 71 | <groupId>com.google.code.gson</groupId> |
72 72 | <artifactId>gson</artifactId> |
73 - | <version>2.8.9</version> |
73 + | <version>2.10.1</version> |
74 74 | <scope>compile</scope> |
75 75 | </dependency> |
76 76 | </dependencies> |
77 77 | |
78 78 | <build> |
79 79 | <finalName>${project.name}</finalName> |
80 80 | <plugins> |
81 81 | <plugin> |
82 82 | <groupId>net.md-5</groupId> |
83 83 | <artifactId>scriptus</artifactId> |
84 - | <version>0.4.1</version> |
84 + | <version>0.5.0</version> |
85 85 | <configuration> |
86 86 | <format>git-${project.name}-%s-${build.number}</format> |
87 87 | </configuration> |
88 88 | <executions> |
89 89 | <execution> |
90 90 | <phase>initialize</phase> |
91 91 | <goals> |
92 92 | <goal>describe</goal> |
93 93 | </goals> |
94 94 | </execution> |
95 95 | </executions> |
96 96 | </plugin> |
97 97 | <plugin> |
98 98 | <groupId>org.apache.maven.plugins</groupId> |
99 99 | <artifactId>maven-jar-plugin</artifactId> |
100 - | <version>3.2.0</version> |
100 + | <version>3.3.0</version> |
101 101 | <configuration> |
102 102 | <archive> |
103 103 | <manifestEntries> |
104 104 | <Main-Class>org.spigotmc.builder.Bootstrap</Main-Class> |
105 105 | <Implementation-Title>BuildTools</Implementation-Title> |
106 106 | <Implementation-Version>${describe}</Implementation-Version> |
107 107 | </manifestEntries> |
108 108 | </archive> |
109 109 | </configuration> |
110 110 | </plugin> |
111 111 | <plugin> |
112 112 | <groupId>org.apache.maven.plugins</groupId> |
113 113 | <artifactId>maven-shade-plugin</artifactId> |
114 - | <version>3.2.4</version> |
114 + | <version>3.5.0</version> |
115 115 | <executions> |
116 116 | <execution> |
117 117 | <phase>package</phase> |
118 118 | <goals> |
119 119 | <goal>shade</goal> |
120 120 | </goals> |
121 121 | </execution> |
122 122 | </executions> |
123 123 | <configuration> |
124 124 | <filters> |
130 130 | <exclude>**/*.DSA</exclude> |
131 131 | </excludes> |
132 132 | </filter> |
133 133 | </filters> |
134 134 | <minimizeJar>true</minimizeJar> |
135 135 | </configuration> |
136 136 | </plugin> |
137 137 | <plugin> |
138 138 | <groupId>org.codehaus.mojo</groupId> |
139 139 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
140 - | <version>1.19</version> |
140 + | <version>1.23</version> |
141 141 | <executions> |
142 142 | <execution> |
143 143 | <phase>process-classes</phase> |
144 144 | <goals> |
145 145 | <goal>check</goal> |
146 146 | </goals> |
147 147 | </execution> |
148 148 | </executions> |
149 149 | <configuration> |
150 150 | <signature> |