jsii-release 0.2.211 → 0.2.215

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -70,6 +70,8 @@ npx jsii-release-npm [DIR]
70
70
 
71
71
  Publishes all Maven modules in the `DIR` to [Maven Central](https://search.maven.org/).
72
72
 
73
+ Note that if you signed up at SonaType after February 2021, you need to use this URL: `https://s01.oss.sonatype.org` ([announcement](https://central.sonatype.org/news/20210223_new-users-on-s01/)).
74
+
73
75
  **Usage:**
74
76
 
75
77
  ```shell
@@ -84,8 +86,8 @@ npx jsii-release-maven [DIR]
84
86
  |------|--------|-----------|
85
87
  |`MAVEN_USERNAME` and `MAVEN_PASSWORD`|Yes|Username and password for maven repository. For Maven Central, you will need to [Create JIRA account](https://issues.sonatype.org/secure/Signup!default.jspa) and then request a [new project](https://issues.sonatype.org/secure/CreateIssue.jspa?issuetype=21&pid=10134). Read the [OSSRH guide](https://central.sonatype.org/pages/ossrh-guide.html) for more details.|
86
88
  |`MAVEN_GPG_PRIVATE_KEY` or `MAVEN_GPG_PRIVATE_KEY_FILE` and `MAVEN_GPG_PRIVATE_KEY_PASSPHRASE`|Yes for Maven Central|GPG private key or file that includes it. This is used to sign your Maven packages. See instructions below|
87
- |`MAVEN_STAGING_PROFILE_ID`|Yes for Maven Central|Maven Central (sonatype) staging profile ID (e.g. 68a05363083174). Staging profile ID can be found **in the URL** of the "Releases" staging profile under "Staging Profiles" in https://oss.sonatype.org if you are logged in (e.g. `https://oss.sonatype.org/#stagingProfiles;68a05363083174`).|
88
- |`MAVEN_ENDPOINT`|No|URL of Nexus repository. Defaults to `https://oss.sonatype.org`|
89
+ |`MAVEN_STAGING_PROFILE_ID`|Yes for Maven Central|Maven Central (sonatype) staging profile ID (e.g. 68a05363083174). Staging profile ID can be found **in the URL** of the "Releases" staging profile under "Staging Profiles" in https://oss.sonatype.org or https://s01.oss.sonatype.org if you are logged in (e.g. `https://oss.sonatype.org/#stagingProfiles;68a05363083174`).|
90
+ |`MAVEN_ENDPOINT`|Yes for new Maven Central users|URL of Nexus repository. Defaults to `https://oss.sonatype.org`. Use `https://s01.oss.sonatype.org` if you are a new user.|
89
91
  |`MAVEN_SERVER_ID`|No|Used in maven settings for credential lookup (e.g. use `github` when publishing to GitHub). Defaults to `ossrh` for Maven Central.|
90
92
  |`MAVEN_REPOSITORY_URL`|No|Deployment repository when not deploying to Maven Central|
91
93
  |`MAVEN_DRYRUN`|No|Set to "true" for a dry run|
package/package.json CHANGED
@@ -38,7 +38,7 @@
38
38
  "organization": true
39
39
  },
40
40
  "devDependencies": {
41
- "@types/jest": "^27.0.3",
41
+ "@types/jest": "^27.4.0",
42
42
  "@types/node": "^12",
43
43
  "@typescript-eslint/eslint-plugin": "^5",
44
44
  "@typescript-eslint/parser": "^5",
@@ -50,7 +50,7 @@
50
50
  "jest-junit": "^13",
51
51
  "json-schema": "^0.4.0",
52
52
  "npm-check-updates": "^12",
53
- "projen": "^0.46.3",
53
+ "projen": "^0.47.12",
54
54
  "standard-version": "^9",
55
55
  "ts-jest": "^27.1.2",
56
56
  "typescript": "^3.9.10"
@@ -60,14 +60,13 @@
60
60
  "fs-extra": "^8.0.0",
61
61
  "shlex": "^2.1.0"
62
62
  },
63
- "bundledDependencies": [],
64
63
  "keywords": [
65
64
  "jsii"
66
65
  ],
67
66
  "main": "lib/index.js",
68
67
  "license": "Apache-2.0",
69
68
  "homepage": "https://github.com/aws/jsii-release",
70
- "version": "0.2.211",
69
+ "version": "0.2.215",
71
70
  "jest": {
72
71
  "testMatch": [
73
72
  "**/__tests__/**/*.ts?(x)",