Skip to content

Commit 4440f2b

Browse files
committed
OSMT Release 2.0.0 (#215)
The main changes in this release are in packaging and distribution. * OSMT jar artifacts are now publicly available on Maven Central. Please note that the UI jar is empty and has no purpose, as the UI Angular application is embedded in the Spring Boot jar. A coming OSMT release will distribute the UI using typical JavaScript package manager tools. * This release unifies an internal WGU fork of OSMT code with the open source code base. The Spring Boot API endpoints can now be used as a dependency in another Spring application (which was an internal requirement for WGU's operational standards). The API module builds the typical repackaged Spring Boot application jar, but also builds a normal Java jar with a "lib" classifier (osmt-api-lib). You can declare this as a Maven dependency in an independent Spring application. This osmt-api-lib artifact has certain exclusions, including the embedded Angular UI files. See api/pom.xml for the specifics.
1 parent cdf094a commit 4440f2b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>edu.wgu.osmt</groupId>
77
<artifactId>osmt-parent</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>2.0.0</version>
99
</parent>
1010

1111
<repositories>
@@ -28,7 +28,7 @@
2828

2929
<groupId>edu.wgu.osmt</groupId>
3030
<artifactId>osmt-api</artifactId>
31-
<version>1.1.1-SNAPSHOT</version>
31+
<version>2.0.0</version>
3232
<description>WGU Open Skills Management Toolset</description>
3333

3434
<properties>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>edu.wgu.osmt</groupId>
5656
<artifactId>osmt-ui</artifactId>
57-
<version>1.1.1-SNAPSHOT</version>
57+
<version>2.0.0</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.springframework.boot</groupId>

pom.xml

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

1313
<groupId>edu.wgu.osmt</groupId>
1414
<artifactId>osmt-parent</artifactId>
15-
<version>1.1.1-SNAPSHOT</version>
15+
<version>2.0.0</version>
1616
<packaging>pom</packaging>
1717

1818
<name>OSMT</name>

ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>edu.wgu.osmt</groupId>
77
<artifactId>osmt-parent</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>2.0.0</version>
99
</parent>
1010

1111
<groupId>edu.wgu.osmt</groupId>
1212
<artifactId>osmt-ui</artifactId>
13-
<version>1.1.1-SNAPSHOT</version>
13+
<version>2.0.0</version>
1414

1515
<packaging>jar</packaging>
1616

0 commit comments

Comments
 (0)