Skip to content

Commit

Permalink
2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
aasmunds authored and aasmunds committed Feb 12, 2019
1 parent 379084a commit a9b7991
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
public class Installer extends ModuleInstall {

public static final String APPVERSION = "2.6.20";
public static final String APPVERSION = "2.7";

@Override
public void restored() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Project implements IProject {

private String rootFolder;
private String projectName;
public static final double RESOURCE_VERSION = 1.87; // System version at current program
public static final double RESOURCE_VERSION = 1.88; // System version at current program
private Double resourceVersion = 1.00; // System version at program used to create the project file
private final Map<String, IModel> models = new HashMap<>();
private final ILibrary library;
Expand Down
19 changes: 17 additions & 2 deletions stox/stox-formats/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
</plugins>
</build>
<dependencies>
<dependency>
<dependency>
<groupId>org.apache.ws.commons.schema</groupId>
<artifactId>XmlSchema</artifactId>
<version>1.4.7</version>
Expand All @@ -128,6 +128,21 @@
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>

</project>

0 comments on commit a9b7991

Please sign in to comment.