Skip to content

Commit f0fb69b

Browse files
authored
Road grading (#6)
Signed-off-by: Laird Nelson <[email protected]>
1 parent bf2b02d commit f0fb69b

16 files changed

+140
-1497
lines changed

README.md

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

pom.xml

Lines changed: 18 additions & 6 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-attributes/apidocs/,https://microbean.github.io/microbean-bean/apidocs/,https://microbean.github.io/microbean-construct/apidocs/</links>
83+
<links>https://microbean.github.io/microbean-attributes/apidocs/,https://microbean.github.io/microbean-bean/apidocs/,https://microbean.github.io/microbean-construct/apidocs/,https://microbean.github.io/microbean-proxy/apidocs/</links>
8484
<sourcetab>2</sourcetab>
8585

8686
<!-- maven-release-plugin properties -->
@@ -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.0</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>
@@ -150,7 +150,7 @@
150150
<dependency>
151151
<groupId>org.microbean</groupId>
152152
<artifactId>microbean-bean</artifactId>
153-
<version>0.0.17</version>
153+
<version>0.0.18</version>
154154
</dependency>
155155

156156
<dependency>
@@ -159,6 +159,12 @@
159159
<version>0.0.10</version>
160160
</dependency>
161161

162+
<dependency>
163+
<groupId>org.microbean</groupId>
164+
<artifactId>microbean-proxy</artifactId>
165+
<version>0.0.2</version>
166+
</dependency>
167+
162168
</dependencies>
163169
</dependencyManagement>
164170

@@ -182,6 +188,12 @@
182188
<scope>compile</scope>
183189
</dependency>
184190

191+
<dependency>
192+
<groupId>org.microbean</groupId>
193+
<artifactId>microbean-proxy</artifactId>
194+
<scope>compile</scope>
195+
</dependency>
196+
185197
<!-- Test-scoped dependencies. -->
186198

187199
<dependency>
@@ -329,7 +341,7 @@
329341
</plugin>
330342
<plugin>
331343
<artifactId>maven-clean-plugin</artifactId>
332-
<version>3.4.1</version>
344+
<version>3.5.0</version>
333345
<configuration>
334346
<filesets>
335347
<fileset>
@@ -463,7 +475,7 @@
463475
<plugin>
464476
<groupId>io.smallrye</groupId>
465477
<artifactId>jandex-maven-plugin</artifactId>
466-
<version>3.3.0</version>
478+
<version>3.3.1</version>
467479
</plugin>
468480
<plugin>
469481
<groupId>org.sonatype.plugins</groupId>

src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@
2424
requires org.microbean.attributes;
2525
requires transitive org.microbean.bean;
2626
requires transitive org.microbean.construct;
27+
requires transitive org.microbean.proxy;
2728

2829
}

0 commit comments

Comments
 (0)