Skip to content

Commit e5dc7b2

Browse files
committed
Update the tinystruct framework to be 1.7.8
1 parent 9558e69 commit e5dc7b2

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

pom.xml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.tinystruct</groupId>
88
<artifactId>tinystruct-mcp</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<packaging>pom</packaging>
1111
<modules>
1212
<module>github</module>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.tinystruct</groupId>
2727
<artifactId>tinystruct</artifactId>
28-
<version>1.7.7</version>
28+
<version>1.7.8</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.junit.jupiter</groupId>
@@ -37,7 +37,6 @@
3737
<groupId>org.mockito</groupId>
3838
<artifactId>mockito-core</artifactId>
3939
<version>${mockito.version}</version>
40-
4140
</dependency>
4241
</dependencies>
4342
<build>
@@ -51,6 +50,29 @@
5150
<target>17</target>
5251
</configuration>
5352
</plugin>
53+
<plugin>
54+
<groupId>org.apache.maven.plugins</groupId>
55+
<artifactId>maven-dependency-plugin</artifactId>
56+
<version>3.6.1</version>
57+
<executions>
58+
<execution>
59+
<id>copy-submodules</id>
60+
<phase>package</phase>
61+
<goals>
62+
<goal>copy-dependencies</goal>
63+
</goals>
64+
<configuration>
65+
<!-- Output folder -->
66+
<outputDirectory>${project.build.directory}/lib</outputDirectory>
67+
68+
<!-- Include only your own modules -->
69+
<includeGroupIds>org.tinystruct</includeGroupIds>
70+
<excludeTransitive>true</excludeTransitive>
71+
<stripVersion>false</stripVersion>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
5476
</plugins>
5577
</build>
5678
</project>

0 commit comments

Comments
 (0)