Skip to content

Commit 583d786

Browse files
authored
Road grading; refactors some stuff to microbean-assign (#26)
Signed-off-by: Laird Nelson <[email protected]>
1 parent f2c6d5f commit 583d786

29 files changed

+191
-1763
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependency:
2828
<groupId>org.microbean</groupId>
2929
<artifactId>microbean-bean</artifactId>
3030
<!-- Always check https://central.sonatype.com/artifact/org.microbean/microbean-bean for up-to-date available versions. -->
31-
<version>0.0.18</version>
31+
<version>0.0.19</version>
3232
</dependency>
3333
```
3434

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>org.junit</groupId>
127127
<artifactId>junit-bom</artifactId>
128-
<version>5.12.2</version>
128+
<version>5.13.1</version>
129129
<type>pom</type>
130130
<scope>import</scope>
131131
</dependency>
@@ -134,7 +134,7 @@
134134
<dependency>
135135
<groupId>org.jboss.weld</groupId>
136136
<artifactId>weld-core-bom</artifactId>
137-
<version>6.0.2.Final</version>
137+
<version>6.0.3.Final</version>
138138
<type>pom</type>
139139
<scope>import</scope>
140140
</dependency>
@@ -144,13 +144,13 @@
144144
<dependency>
145145
<groupId>org.microbean</groupId>
146146
<artifactId>microbean-assign</artifactId>
147-
<version>0.0.5</version>
147+
<version>0.0.6</version>
148148
</dependency>
149149

150150
<dependency>
151151
<groupId>org.microbean</groupId>
152152
<artifactId>microbean-attributes</artifactId>
153-
<version>0.0.2</version>
153+
<version>0.0.3</version>
154154
</dependency>
155155

156156
<dependency>
@@ -162,7 +162,7 @@
162162
<dependency>
163163
<groupId>org.microbean</groupId>
164164
<artifactId>microbean-construct</artifactId>
165-
<version>0.0.10</version>
165+
<version>0.0.11</version>
166166
</dependency>
167167

168168
</dependencies>
@@ -347,7 +347,7 @@
347347
</plugin>
348348
<plugin>
349349
<artifactId>maven-clean-plugin</artifactId>
350-
<version>3.4.1</version>
350+
<version>3.5.0</version>
351351
<configuration>
352352
<filesets>
353353
<fileset>
@@ -481,7 +481,7 @@
481481
<plugin>
482482
<groupId>io.smallrye</groupId>
483483
<artifactId>jandex-maven-plugin</artifactId>
484-
<version>3.3.0</version>
484+
<version>3.3.1</version>
485485
</plugin>
486486
<plugin>
487487
<groupId>org.sonatype.plugins</groupId>

src/main/java/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
requires transitive java.compiler;
2525
requires transitive org.microbean.assign;
2626
requires transitive org.microbean.attributes;
27-
requires org.microbean.constant;
28-
requires transitive org.microbean.construct;
27+
requires org.microbean.constant;
28+
requires org.microbean.construct;
2929

3030
}

src/main/java/org/microbean/bean/Aggregate.java

Lines changed: 0 additions & 95 deletions
This file was deleted.

src/main/java/org/microbean/bean/Assignment.java

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/main/java/org/microbean/bean/AttributedElement.java

Lines changed: 0 additions & 102 deletions
This file was deleted.

0 commit comments

Comments
 (0)