Skip to content

Commit fc4935e

Browse files
committed
Updated all references of the tinystruct framework from 1.7.17 to 1.7.18.
This ensures that new projects generated via the archetype default to the latest version and that documentation remains accurate.
1 parent 4c2d967 commit fc4935e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Kickstart your tinystruct project using the tinystruct-archetype
22

3-
*A simple way to bootstrap applications with tinystruct 1.7.17*
3+
*A simple way to bootstrap applications with tinystruct 1.7.18*
44

55
If you're building an application with the **tinystruct** framework, the easiest way to begin is by using the **tinystruct-archetype**, now available on **Maven Central**.
66
It gives you a clean, fully prepared project structure with zero manual setup.
@@ -20,8 +20,8 @@ Your project is generated with tinystruct’s recommended conventions:
2020
* Ready to run via CLI or as an HTTP service
2121
* No boilerplate or extra configuration needed
2222

23-
### **3. Built for tinystruct 1.7.17**
24-
Select the version you want (e.g., `1.7.17`), and it's applied automatically.
23+
### **3. Built for tinystruct 1.7.18**
24+
Select the version you want (e.g., `1.7.18`), and it's applied automatically.
2525

2626
### **4. No Repo Clone Needed**
2727
Because the archetype is published on Maven Central, you can use it immediately.
@@ -31,7 +31,7 @@ Because the archetype is published on Maven Central, you can use it immediately.
3131
Simply run:
3232

3333
```cmd
34-
mvn archetype:generate -DarchetypeGroupId="org.tinystruct" -DarchetypeArtifactId="tinystruct-archetype" -DarchetypeVersion="1.0.6" -DgroupId="com.mycompany" -DartifactId="my-tiny-app" -Dpackage="com.mycompany.app" -DtinystructVersion="1.7.17" -DinteractiveMode="false"
34+
mvn archetype:generate -DarchetypeGroupId="org.tinystruct" -DarchetypeArtifactId="tinystruct-archetype" -DarchetypeVersion="1.0.6" -DgroupId="com.mycompany" -DartifactId="my-tiny-app" -Dpackage="com.mycompany.app" -DtinystructVersion="1.7.18" -DinteractiveMode="false"
3535
```
3636
Adjust `tinystructVersion` if needed. The generated project includes a simple `Application` that extends `AbstractApplication` with a sample `hello` action.
3737
This creates your new project instantly.

src/main/resources/META-INF/maven/archetype-metadata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<defaultValue>com.example.app</defaultValue>
1010
</requiredProperty>
1111
<requiredProperty key="tinystructVersion">
12-
<defaultValue>1.7.17</defaultValue>
12+
<defaultValue>1.7.18</defaultValue>
1313
</requiredProperty>
1414
</requiredProperties>
1515
<fileSets>

src/main/resources/archetype-resources/DEVELOPER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`:
2626
<dependency>
2727
<groupId>org.tinystruct</groupId>
2828
<artifactId>tinystruct</artifactId>
29-
<version>1.7.17</version>
29+
<version>1.7.18</version>
3030
</dependency>
3131
```
3232

0 commit comments

Comments
 (0)