Skip to content

Commit d1e613a

Browse files
bug:CS-37173-unexpected_new_lines
bug:CS-37173-unexpected_new_lines
1 parent f623d70 commit d1e613a

File tree

4 files changed

+81
-2
lines changed

4 files changed

+81
-2
lines changed

.github/workflows/maven-publish.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Publish package to the Maven Central Repository
2+
on:
3+
release:
4+
types: [ created ]
5+
jobs:
6+
publish-maven:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
packages: write
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Set up Maven Central Repository
14+
uses: actions/setup-java@v3
15+
with:
16+
java-version: '8'
17+
distribution: 'adopt'
18+
server-id: ossrh
19+
server-username: ${{ secrets.OSSRH_USERNAME }}
20+
server-password: ${{ secrets.OSSRH_TOKEN }}
21+
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
22+
- name: Publish package
23+
run: mvn --batch-mode deploy
24+
publish-github:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v3
28+
- name: Set up Java for publishing to GitHub Packages
29+
uses: actions/setup-java@v3
30+
with:
31+
java-version: '8'
32+
distribution: 'adopt'
33+
server-id: github
34+
- name: Publish to GitHub Packages
35+
run: mvn --batch-mode deploy
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Changelog.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
# Changelog
3+
4+
A brief description of what changes project contains
5+
6+
7+
## Jun 26, 2023
8+
#### v1.2.1
9+
##### Jun 26, 2023
10+
New Line Issues while rendering Json object To HTML
11+
12+
## Updated Jsoup vulnerable dependency
13+
#### v1.2.0
14+
##### Oct 6, 2022
15+
- Updated Jsoup vulnerable dependency
16+
- jsonToHTML function support added
17+
18+
19+
## Fixed compile Issue
20+
#### v1.1.2
21+
##### Jun 16, 2022
22+
Fixed compile Issue
23+
24+
## Transitive dependencies updated
25+
#### v1.1.1
26+
##### Apr-06-2021
27+
Updated transitive dependencies to pom.xml
28+
29+
30+
## JSON RTE Feature Support
31+
#### v1.1.0
32+
##### Jun 1, 2022
33+
JSON RTE Feature Support
34+
35+
## Introducing Release Of Java Utils SDK
36+
#### v1.0.0
37+
##### Apr 6, 2021
38+
Initial release for Utils SDK
39+
## Support
40+
41+
For support, email [email protected] or join our Slack channel.
42+

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2012 - 2021 Contentstack
3+
Copyright (c) 2012 - 2023 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This guide will help you get started with Contentstack Java Utils SDK to build a
1212

1313
### SDK Installation and Setup
1414

15-
To setup Utils SDK in your Java project, add the following dependency in the pom.xml file
15+
To setup [Utils SDK](https://mvnrepository.com/artifact/com.contentstack.sdk/utils) in your Java project, add the following dependency in the pom.xml file
1616

1717
```java
1818
<dependency>

0 commit comments

Comments
 (0)