Skip to content

Commit b38192b

Browse files
committed
add: gradle build resource url resolver to map test resources to src
1 parent f3ac971 commit b38192b

File tree

67 files changed

+118
-81
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+118
-81
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ target/
3737
/flexmark-docx-converter/src/test/resources/Tab.xml
3838
/assets/comms/
3939
/lib/
40+
/mvn-dependency-tree.txt

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ following sample:
4343
<dependency>
4444
<groupId>com.vladsch.flexmark</groupId>
4545
<artifactId>flexmark-all</artifactId>
46-
<version>0.64.4</version>
46+
<version>0.64.6</version>
4747
</dependency>
4848
```
4949

@@ -82,7 +82,7 @@ public class BasicSample {
8282
#### Building via Gradle
8383

8484
```shell
85-
implementation 'com.vladsch.flexmark:flexmark-all:0.64.4'
85+
implementation 'com.vladsch.flexmark:flexmark-all:0.64.6'
8686
```
8787

8888
#### Building with Android Studio

VERSION.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[TOC]: # ""
44

5+
- [0.64.6](#0646)
56
- [0.64.4](#0644)
67
- [0.64.2](#0642)
78
- [0.64.0](#0640)
@@ -115,6 +116,12 @@
115116
- [0.40.2](#0402)
116117
- [0.40.0](#0400)
117118

119+
## 0.64.6
120+
121+
* Add: gradle build resource url resolver, mapping `/build/resources/test/` to
122+
`/src/test/resources/`
123+
* Add: a bit more documentation to `ResourceResolverManager`
124+
118125
## 0.64.4
119126

120127
* Change: update to `org.docx4j:docx4j-JAXB-ReferenceImpl:11.4.9`, if you have code using
@@ -124,7 +131,8 @@
124131
library renderers and is an unsupported extension.
125132
* Fix: update `log4j:log4j:1.2.17` to `org.apache.logging.log4j:log4j-xxx:2.20.0`
126133
* Fix: exclude `com.ibm.icu:icu4j:59.1` dependency, replace with `com.ibm.icu:icu4j:72.1`
127-
* Fix: exclude `commons-io:commons-io:1.3.1` dependency, replace with `commons-io:commons-io:2.11.0`
134+
* Fix: exclude `commons-io:commons-io:1.3.1` dependency, replace with
135+
`commons-io:commons-io:2.11.0`
128136

129137
## 0.64.2
130138

flexmark-all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.vladsch.flexmark</groupId>
99
<artifactId>flexmark-java</artifactId>
10-
<version>0.64.4</version>
10+
<version>0.64.6</version>
1111
</parent>
1212

1313
<artifactId>flexmark-all</artifactId>

flexmark-core-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.vladsch.flexmark</groupId>
66
<artifactId>flexmark-java</artifactId>
7-
<version>0.64.4</version>
7+
<version>0.64.6</version>
88
</parent>
99

1010
<artifactId>flexmark-core-test</artifactId>

flexmark-docx-converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.vladsch.flexmark</groupId>
77
<artifactId>flexmark-java</artifactId>
8-
<version>0.64.4</version>
8+
<version>0.64.6</version>
99
</parent>
1010

1111
<artifactId>flexmark-docx-converter</artifactId>

flexmark-ext-abbreviation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.vladsch.flexmark</groupId>
66
<artifactId>flexmark-java</artifactId>
7-
<version>0.64.4</version>
7+
<version>0.64.6</version>
88
</parent>
99

1010
<artifactId>flexmark-ext-abbreviation</artifactId>

flexmark-ext-admonition/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.vladsch.flexmark</groupId>
66
<artifactId>flexmark-java</artifactId>
7-
<version>0.64.4</version>
7+
<version>0.64.6</version>
88
</parent>
99

1010
<artifactId>flexmark-ext-admonition</artifactId>

flexmark-ext-anchorlink/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.vladsch.flexmark</groupId>
66
<artifactId>flexmark-java</artifactId>
7-
<version>0.64.4</version>
7+
<version>0.64.6</version>
88
</parent>
99

1010
<artifactId>flexmark-ext-anchorlink</artifactId>
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.vladsch.flexmark</groupId>
3030
<artifactId>flexmark-jira-converter</artifactId>
31-
<version>0.64.4</version>
31+
<version>0.64.6</version>
3232
<scope>test</scope>
3333
</dependency>
3434
<dependency>

flexmark-ext-aside/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.vladsch.flexmark</groupId>
66
<artifactId>flexmark-java</artifactId>
7-
<version>0.64.4</version>
7+
<version>0.64.6</version>
88
</parent>
99

1010
<artifactId>flexmark-ext-aside</artifactId>

0 commit comments

Comments
 (0)