Skip to content

Commit c9b6f62

Browse files
authored
Uptakes microbean-attributes 0.0.2. Refactors Qualifiers. (#6)
Signed-off-by: Laird Nelson <[email protected]>
1 parent ba0cb81 commit c9b6f62

File tree

4 files changed

+182
-148
lines changed

4 files changed

+182
-148
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependency:
2727
<groupId>org.microbean</groupId>
2828
<artifactId>microbean-assign</artifactId>
2929
<!-- Always check https://search.maven.org/artifact/org.microbean/microbean-bean for up-to-date available versions. -->
30-
<version>0.0.4</version>
30+
<version>0.0.5</version>
3131
</dependency>
3232
```
3333

pom.xml

Lines changed: 15 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<!-- maven-javadoc-plugin properties -->
8181
<bottom><![CDATA[Copyright &copy; ${project.inceptionYear}&ndash;{currentYear}, <a href="${project.organization.url}" target="_top">${project.organization.name}</a>. All rights reserved.]]></bottom>
8282
<doctitle>&lt;a href="${project.url}" target="_top"&gt;&lt;span style="font-family:Lobster, cursive;"&gt;µb&lt;/span&gt; ${project.artifactId}&lt;/a&gt; ${project.version}</doctitle>
83-
<links>https://microbean.github.io/microbean-construct/apidocs/,https://microbean.github.io/microbean-qualifier/apidocs/</links>
83+
<links>https://microbean.github.io/microbean-attributes/apidocs/,https://microbean.github.io/microbean-construct/apidocs/</links>
8484
<sourcetab>2</sourcetab>
8585

8686
<!-- maven-release-plugin properties -->
@@ -134,14 +134,14 @@
134134

135135
<dependency>
136136
<groupId>org.microbean</groupId>
137-
<artifactId>microbean-construct</artifactId>
138-
<version>0.0.9</version>
137+
<artifactId>microbean-attributes</artifactId>
138+
<version>0.0.2</version>
139139
</dependency>
140140

141141
<dependency>
142142
<groupId>org.microbean</groupId>
143-
<artifactId>microbean-qualifier</artifactId>
144-
<version>0.2.4</version>
143+
<artifactId>microbean-construct</artifactId>
144+
<version>0.0.10</version>
145145
</dependency>
146146

147147
</dependencies>
@@ -151,13 +151,13 @@
151151

152152
<dependency>
153153
<groupId>org.microbean</groupId>
154-
<artifactId>microbean-construct</artifactId>
154+
<artifactId>microbean-attributes</artifactId>
155155
<scope>compile</scope>
156156
</dependency>
157-
157+
158158
<dependency>
159159
<groupId>org.microbean</groupId>
160-
<artifactId>microbean-qualifier</artifactId>
160+
<artifactId>microbean-construct</artifactId>
161161
<scope>compile</scope>
162162
</dependency>
163163

@@ -308,7 +308,7 @@
308308
</plugin>
309309
<plugin>
310310
<artifactId>maven-clean-plugin</artifactId>
311-
<version>3.4.0</version>
311+
<version>3.4.1</version>
312312
<configuration>
313313
<filesets>
314314
<fileset>
@@ -323,28 +323,21 @@
323323
</plugin>
324324
<plugin>
325325
<artifactId>maven-compiler-plugin</artifactId>
326-
<version>3.13.0</version>
326+
<version>3.14.0</version>
327327
<configuration>
328328
<compilerArgs>
329329
<arg>-Xlint:all</arg>
330330
<arg>-parameters</arg>
331331
</compilerArgs>
332332
</configuration>
333-
<dependencies>
334-
<dependency>
335-
<groupId>org.codehaus.plexus</groupId>
336-
<artifactId>plexus-java</artifactId>
337-
<version>1.3.0</version>
338-
</dependency>
339-
</dependencies>
340333
</plugin>
341334
<plugin>
342335
<artifactId>maven-dependency-plugin</artifactId>
343336
<version>3.8.1</version>
344337
</plugin>
345338
<plugin>
346339
<artifactId>maven-deploy-plugin</artifactId>
347-
<version>3.1.3</version>
340+
<version>3.1.4</version>
348341
</plugin>
349342
<plugin>
350343
<artifactId>maven-enforcer-plugin</artifactId>
@@ -357,7 +350,7 @@
357350
</plugin>
358351
<plugin>
359352
<artifactId>maven-install-plugin</artifactId>
360-
<version>3.1.3</version>
353+
<version>3.1.4</version>
361354
</plugin>
362355
<plugin>
363356
<artifactId>maven-jar-plugin</artifactId>
@@ -393,7 +386,7 @@
393386
</plugin>
394387
<plugin>
395388
<artifactId>maven-project-info-reports-plugin</artifactId>
396-
<version>3.8.0</version>
389+
<version>3.9.0</version>
397390
</plugin>
398391
<plugin>
399392
<artifactId>maven-release-plugin</artifactId>
@@ -446,7 +439,7 @@
446439
<plugin>
447440
<groupId>com.github.spotbugs</groupId>
448441
<artifactId>spotbugs-maven-plugin</artifactId>
449-
<version>4.8.6.6</version>
442+
<version>4.9.1.0</version>
450443
</plugin>
451444
<plugin>
452445
<groupId>org.codehaus.mojo</groupId>
@@ -456,7 +449,7 @@
456449
<plugin>
457450
<groupId>io.smallrye</groupId>
458451
<artifactId>jandex-maven-plugin</artifactId>
459-
<version>3.2.3</version>
452+
<version>3.2.7</version>
460453
</plugin>
461454
<plugin>
462455
<groupId>org.sonatype.plugins</groupId>

src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
exports org.microbean.assign;
2323

2424
requires transitive java.compiler;
25+
requires transitive org.microbean.attributes;
2526
requires transitive org.microbean.construct;
26-
requires transitive org.microbean.qualifier;
2727

2828
}

0 commit comments

Comments
 (0)