specmatic 1.3.37 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "specmatic",
3
- "version": "1.3.37",
4
- "specmaticVersion": "1.3.37",
3
+ "version": "2.0.0",
4
+ "specmaticVersion": "2.0.0",
5
5
  "description": "Node wrapper for Specmatic",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
package/specmatic.jar CHANGED
Binary file
@@ -4,7 +4,7 @@ const path = require('path');
4
4
  const packageJson = require('../package.json'); // Import the package.json file
5
5
 
6
6
  const specmaticVersion = packageJson.specmaticVersion;
7
- const jarUrl = `https://repo1.maven.org/maven2/in/specmatic/specmatic-executable/${specmaticVersion}/specmatic-executable-${specmaticVersion}-all.jar`;
7
+ const jarUrl = `https://repo1.maven.org/maven2/io/specmatic/specmatic-executable/${specmaticVersion}/specmatic-executable-${specmaticVersion}-all.jar`;
8
8
  const jarFilename = 'specmatic.jar'; // Specify the desired filename for the JAR
9
9
 
10
10
  const downloadPath = path.resolve(__dirname, '..', jarFilename);