Skip to content

Commit 1047f8d

Browse files
committed
Update tinystruct version to 1.7.12
1 parent d5b19a9 commit 1047f8d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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.11*
3+
*A simple way to bootstrap applications with tinystruct 1.7.12*
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.11**
24-
Select the version you want (e.g., `1.7.11`), and it's applied automatically.
23+
### **3. Built for tinystruct 1.7.12**
24+
Select the version you want (e.g., `1.7.12`), 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.2" -DgroupId="com.mycompany" -DartifactId="my-tiny-app" -Dpackage="com.mycompany.app" -DtinystructVersion="1.7.11" -DinteractiveMode="false"
34+
mvn archetype:generate -DarchetypeGroupId="org.tinystruct" -DarchetypeArtifactId="tinystruct-archetype" -DarchetypeVersion="1.0.2" -DgroupId="com.mycompany" -DartifactId="my-tiny-app" -Dpackage="com.mycompany.app" -DtinystructVersion="1.7.12" -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.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.tinystruct</groupId>
77
<artifactId>tinystruct-archetype</artifactId>
8-
<version>1.0.3</version>
8+
<version>1.0.4</version>
99
<packaging>maven-archetype</packaging>
1010

1111
<name>tinystruct-archetype</name>

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.11</defaultValue>
12+
<defaultValue>1.7.12</defaultValue>
1313
</requiredProperty>
1414
</requiredProperties>
1515
<fileSets>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Sample application properties for generated tinystruct app
22
# Set tinystruct version that the generated project should use
3-
tinystruct.version=1.7.11
3+
tinystruct.version=1.7.12

0 commit comments

Comments
 (0)