Skip to content

Commit 71b57d8

Browse files
committed
Merge pull request #80 from adangel:issue-65-pmd-designer
Rename pmd-ui to pmd-designer #80
2 parents 575101e + 45929ad commit 71b57d8

File tree

19 files changed

+44
-34
lines changed

19 files changed

+44
-34
lines changed

.ci/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ function build() {
4747
GH_RELEASE="$RESULT"
4848

4949
# Deploy to github releases
50-
pmd_ci_gh_releases_uploadAsset "$GH_RELEASE" "target/pmd-ui-${PMD_CI_MAVEN_PROJECT_VERSION}.jar"
50+
# Note: This is the shaded jar
51+
pmd_ci_gh_releases_uploadAsset "$GH_RELEASE" "target/pmd-designer-${PMD_CI_MAVEN_PROJECT_VERSION}.jar"
5152

5253
# extract the release notes
5354
RELEASE_NAME="${PMD_CI_MAVEN_PROJECT_VERSION}"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ buildNumber.properties
118118

119119
# CSS files generated by IDE
120120
src/main/resources/net/sourceforge/pmd/util/fxdesigner/css
121-
pmd-ui.iml
121+
pmd-designer.iml

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/runConfigurations/Designer__JRE_11_.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Designer__JRE_8_.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Designer__JRE_9_.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@
44

55
* **Bump required pmd-core version to 7.0.0-SNAPSHOT.**
66

7+
**Changed maven GAV**
8+
The maven coordinates (GAV) have been changed. The artifactId has been renamed to pmd-designer.
9+
10+
```xml
11+
<dependency>
12+
<groupId>net.sourceforge.pmd</groupId>
13+
<artifactId>pmd-designer</artifactId>
14+
<version>7.0.0</version>
15+
</dependency>
16+
```
17+
18+
At the same time, the release artefact name changed to **pmd-designer-7.0.0.jar**.
19+
20+
**Fixed issues:**
21+
22+
* [#65](https://github.com/pmd/pmd-designer/issues/65) Rename artifactId to pmd-designer
23+
724
**Merged pull requests:**
825

926
* [#77](https://github.com/pmd/pmd-designer/pull/77) Enable PMD checks with PMD 7 by [@adangel](https://github.com/adangel)

0 commit comments

Comments
 (0)