Skip to content

Commit 17f6413

Browse files
authored
Uptakes new microbean-bean version. Cleans up documentation. Removes spurious interface. (#3)
Signed-off-by: Laird Nelson <[email protected]>
1 parent 0377d88 commit 17f6413

File tree

5 files changed

+9
-44
lines changed

5 files changed

+9
-44
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ changes, regardless of project version and without notice.**
1515

1616
# Requirements
1717

18-
microBean™ Reference requires a Java runtime of version 23 or higher.
18+
microBean™ Reference requires a Java runtime of version 21 or higher.
1919

2020
# Installation
2121

@@ -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.1</version>
30+
<version>0.0.2</version>
3131
</dependency>
3232
```
3333

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@
7373
<java.util.logging.config.file>${project.basedir}/src/test/java/logging.properties</java.util.logging.config.file>
7474

7575
<!-- maven-compiler-plugin properties -->
76-
<maven.compiler.release>23</maven.compiler.release>
76+
<maven.compiler.release>21</maven.compiler.release>
7777
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
7878
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
7979

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-bean/apidocs/,https://microbean.github.io/microbean-construct/apidocs/,https://microbean.github.io/microbean-qualifier/apidocs/,https://microbean.github.io/microbean-scope/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/</links>
8484
<sourcetab>2</sourcetab>
8585

8686
<!-- maven-release-plugin properties -->
@@ -146,11 +146,11 @@
146146
<artifactId>microbean-attributes</artifactId>
147147
<version>0.0.2</version>
148148
</dependency>
149-
149+
150150
<dependency>
151151
<groupId>org.microbean</groupId>
152152
<artifactId>microbean-bean</artifactId>
153-
<version>0.0.15</version>
153+
<version>0.0.16</version>
154154
</dependency>
155155

156156
<dependency>
@@ -169,7 +169,7 @@
169169
<artifactId>microbean-attributes</artifactId>
170170
<scope>compile</scope>
171171
</dependency>
172-
172+
173173
<dependency>
174174
<groupId>org.microbean</groupId>
175175
<artifactId>microbean-bean</artifactId>

src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515
/**
16-
* Provides packages related to implementing references.
16+
* Provides packages related to implementing <dfn>contextual references</dfn>.
1717
*
1818
* @author <a href="https://about.me/lairdnelson" target="_parent">Laird Nelson</a>
1919
*/

src/main/java/org/microbean/reference/InstanceRemover.java

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

src/main/java/org/microbean/reference/Instances.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @see #supplier(Request)
2626
*/
27-
public interface Instances extends AutoCloseable, InstanceRemover {
27+
public interface Instances extends AutoCloseable {
2828

2929
@Override // AutoCloseable
3030
public default void close() {

0 commit comments

Comments
 (0)