File tree Expand file tree Collapse file tree 7 files changed +29
-14
lines changed
dynamicreports-core-for-grid-exporter-demo
dynamicreports-core-for-grid-exporter
src/main/java/software/xdev/dynamicreports/report/defaults Expand file tree Collapse file tree 7 files changed +29
-14
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130
130
gpg-private-key : ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
131
131
132
132
- name : Publish to Apache Maven Central
133
- run : ../mvnw -B deploy -Possrh
133
+ run : ../mvnw -B deploy -Possrh -DskipTests
134
134
env :
135
135
MAVEN_CENTRAL_USERNAME : ${{ secrets.S01_OSS_SONATYPE_MAVEN_USERNAME }}
136
136
MAVEN_CENTRAL_TOKEN : ${{ secrets.S01_OSS_SONATYPE_MAVEN_TOKEN }}
@@ -157,7 +157,7 @@ jobs:
157
157
cache : ' maven'
158
158
159
159
- name : Build site
160
- run : ../mvnw -B site
160
+ run : ../mvnw -B compile site -DskipTests -T2C
161
161
working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
162
162
163
163
- name : Deploy to Github pages
@@ -186,7 +186,7 @@ jobs:
186
186
for i in "${modules[@]}"
187
187
do
188
188
echo "Processing $i/pom.xml"
189
- (cd "$i" && $mvnwPath -B build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion} -DgenerateBackupPoms=false -DnextSnapshot=true)
189
+ (cd "$i" && $mvnwPath -B build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion} -DgenerateBackupPoms=false -DnextSnapshot=true -DupdateMatchingVersions=false )
190
190
done
191
191
192
192
- name : Git Commit and Push
Original file line number Diff line number Diff line change
1
+ # 2.0.1
2
+ * Fix textfields cutting away text
3
+
1
4
# 2.0.0
2
5
* Updated to JasperReports 7
3
6
* Removed support for Maps
Original file line number Diff line number Diff line change 11
11
</parent >
12
12
13
13
<artifactId >dynamicreports-core-for-grid-exporter-demo</artifactId >
14
- <version >2.0.2 -SNAPSHOT</version >
14
+ <version >2.0.1 -SNAPSHOT</version >
15
15
<packaging >jar</packaging >
16
16
17
17
<organization >
Original file line number Diff line number Diff line change 123
123
<dependency >
124
124
<groupId >org.junit.jupiter</groupId >
125
125
<artifactId >junit-jupiter</artifactId >
126
- <version >5.10.2 </version >
126
+ <version >5.10.3 </version >
127
127
<scope >test</scope >
128
128
</dependency >
129
129
</dependencies >
139
139
<plugin >
140
140
<groupId >org.apache.maven.plugins</groupId >
141
141
<artifactId >maven-project-info-reports-plugin</artifactId >
142
- <version >3.6.1 </version >
142
+ <version >3.6.2 </version >
143
143
</plugin >
144
144
</plugins >
145
145
</pluginManagement >
219
219
220
220
<plugin >
221
221
<artifactId >maven-surefire-plugin</artifactId >
222
- <version >3.3.0 </version >
222
+ <version >3.3.1 </version >
223
223
</plugin >
224
224
</plugins >
225
225
</build >
321
321
<plugin >
322
322
<groupId >org.apache.maven.plugins</groupId >
323
323
<artifactId >maven-pmd-plugin</artifactId >
324
- <version >3.23 .0</version >
324
+ <version >3.24 .0</version >
325
325
<configuration >
326
326
<includeTests >true</includeTests >
327
327
<printFailingErrors >true</printFailingErrors >
338
338
<dependency >
339
339
<groupId >net.sourceforge.pmd</groupId >
340
340
<artifactId >pmd-core</artifactId >
341
- <version >7.2 .0</version >
341
+ <version >7.3 .0</version >
342
342
</dependency >
343
343
<dependency >
344
344
<groupId >net.sourceforge.pmd</groupId >
345
345
<artifactId >pmd-java</artifactId >
346
- <version >7.2 .0</version >
346
+ <version >7.3 .0</version >
347
347
</dependency >
348
348
</dependencies >
349
349
</plugin >
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ public class Default
126
126
// text field
127
127
protected int textFieldWidth ;
128
128
protected boolean textFieldPrintRepeatedValues ;
129
+ protected TextAdjust textFieldTextAdjust ;
129
130
// image
130
131
protected int imageWidth ;
131
132
protected int imageHeight ;
@@ -326,6 +327,7 @@ protected void init()
326
327
327
328
this .textFieldWidth = 100 ;
328
329
this .textFieldPrintRepeatedValues = true ;
330
+ this .textFieldTextAdjust = TextAdjust .STRETCH_HEIGHT ;
329
331
330
332
this .imageWidth = 100 ;
331
333
this .imageHeight = 100 ;
@@ -745,7 +747,7 @@ public boolean isTextFieldPrintRepeatedValues()
745
747
746
748
public TextAdjust getTextFieldTextAdjust ()
747
749
{
748
- return null ;
750
+ return this . textFieldTextAdjust ;
749
751
}
750
752
751
753
public int getImageWidth ()
Original file line number Diff line number Diff line change 70
70
<plugin >
71
71
<groupId >org.apache.maven.plugins</groupId >
72
72
<artifactId >maven-pmd-plugin</artifactId >
73
- <version >3.23 .0</version >
73
+ <version >3.24 .0</version >
74
74
<configuration >
75
75
<includeTests >true</includeTests >
76
76
<printFailingErrors >true</printFailingErrors >
87
87
<dependency >
88
88
<groupId >net.sourceforge.pmd</groupId >
89
89
<artifactId >pmd-core</artifactId >
90
- <version >7.2 .0</version >
90
+ <version >7.3 .0</version >
91
91
</dependency >
92
92
<dependency >
93
93
<groupId >net.sourceforge.pmd</groupId >
94
94
<artifactId >pmd-java</artifactId >
95
- <version >7.2 .0</version >
95
+ <version >7.3 .0</version >
96
96
</dependency >
97
97
</dependencies >
98
98
</plugin >
Original file line number Diff line number Diff line change 9
9
"maven"
10
10
] ,
11
11
"enabled" : false
12
+ } ,
13
+ {
14
+ "description" : "Group net.sourceforge.pmd" ,
15
+ "matchPackagePatterns" : [
16
+ "^net.sourceforge.pmd"
17
+ ] ,
18
+ "datasources" : [
19
+ "maven"
20
+ ] ,
21
+ "groupName" : "net.sourceforge.pmd"
12
22
}
13
23
]
14
24
}
You can’t perform that action at this time.
0 commit comments