Skip to content

Commit d64fa23

Browse files
committed
Add some debugging
1 parent 668f124 commit d64fa23

4 files changed

Lines changed: 19 additions & 71 deletions

File tree

.github/workflows/dependency-check.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ name: dependency-check
33
on:
44
push:
55
branches: [ "main" ]
6+
paths-ignore:
7+
- '.gitignore'
8+
- '*.md'
9+
- 'docs/**'
10+
- '**/*.adoc'
611
pull_request:
712
branches: [ "main" ]
13+
paths-ignore:
14+
- '.gitignore'
15+
- '*.md'
16+
- 'docs/**'
17+
- '**/*.adoc'
818
schedule:
919
- cron: '40 1 * * 1'
1020

@@ -48,6 +58,8 @@ jobs:
4858
run: |
4959
mvn -Pbedework-dev,depcheck --settings ./.github/workflows/settings.xml \
5060
--no-transfer-progress clean install -DskipTests \
61+
-DossIndexUsername="${{secrets.OSSINDEXUSER}}" \
62+
-DossIndexPassword="${{secrets.OSSINDEXPW}}" \
5163
-DnvdApiKey=${{secrets.nvdApiKey}} -DskipITs -Dmax.cvss.score=8 \
5264
org.owasp:dependency-check-maven:aggregate
5365
# -l ${{github.workspace}}/mvn-output.txt

bw-hibernate/src/main/java/org/bedework/database/hibernate/HibSessionImpl.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ public void commit() {
5353
throw exc;
5454
}
5555

56+
if (debug()) {
57+
error("---------- Exception in commit ---------");
58+
error(t);
59+
}
60+
5661
final Class<?> obj;
5762
try {
5863
obj = t.getClass().getClassLoader().loadClass(

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h2 id="reports">5. Reports</h2>
119119
</div>
120120
<div id="footer">
121121
<div id="footer-text">
122-
Last updated 2025-09-22 03:01:43 UTC
122+
Last updated 2025-06-23 15:32:21 -0400
123123
</div>
124124
</div>
125125
</body>

pom.xml

Lines changed: 1 addition & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.bedework</groupId>
66
<artifactId>bedework-parent</artifactId>
7-
<version>206</version>
7+
<version>239-SNAPSHOT</version>
88
</parent>
99

1010
<groupId>org.bedework.database</groupId>
@@ -22,79 +22,10 @@
2222
<url>https://github.com/Bedework/bw-database</url>
2323
</scm>
2424

25-
<developers>
26-
<developer>
27-
<name>Mike Douglass</name>
28-
<organization>
29-
Bedework Commercial Services
30-
</organization>
31-
<organizationUrl>https://bedework.com/</organizationUrl>
32-
</developer>
33-
<developer>
34-
<name>Arlen Johnson</name>
35-
<organization>
36-
Spherical Cow Group
37-
</organization>
38-
<organizationUrl>http://sphericalcowgroup.com/</organizationUrl>
39-
</developer>
40-
</developers>
41-
42-
<licenses>
43-
<license>
44-
<name>Apache License Version 2.0</name>
45-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
46-
</license>
47-
</licenses>
48-
4925
<modules>
5026
<module>bw-hibernate</module>
5127
<module>bw-db</module>
5228
<module>bw-openjpa</module>
5329
<module>bw-jpa</module>
5430
</modules>
55-
56-
<build>
57-
<plugins>
58-
<plugin>
59-
<groupId>org.owasp</groupId>
60-
<artifactId>dependency-check-maven</artifactId>
61-
</plugin>
62-
63-
<plugin>
64-
<groupId>org.asciidoctor</groupId>
65-
<artifactId>asciidoctor-maven-plugin</artifactId>
66-
</plugin>
67-
68-
<plugin>
69-
<artifactId>maven-resources-plugin</artifactId>
70-
<groupId>org.apache.maven.plugins</groupId>
71-
72-
<executions>
73-
<execution>
74-
<id>copy-generated-asciidoc</id>
75-
<phase>package</phase>
76-
<goals>
77-
<goal>copy-resources</goal>
78-
</goals>
79-
<configuration>
80-
<outputDirectory>${project.basedir}/docs/</outputDirectory>
81-
<resources>
82-
<resource>
83-
<directory>${project.build.directory}/generated-docs</directory>
84-
<filtering>false</filtering>
85-
<includes>
86-
<include>index.html</include>
87-
<include>asciidoctor.css</include>
88-
<include>tocbot*/*</include>
89-
<include>docinfo/*</include>
90-
</includes>
91-
</resource>
92-
</resources>
93-
</configuration>
94-
</execution>
95-
</executions>
96-
</plugin>
97-
98-
</plugins>
99-
</build>
10031
</project>

0 commit comments

Comments
 (0)