Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ updates:
ignore:
- dependency-name: org.apache.derby:derby
versions:
- "> 10.14.2.0"
- "> 10.15.2.0"
- dependency-name: org.apache.derby:derbyoptionaltools
versions:
- "> 10.15.2.0"
- dependency-name: org.apache.derby:derbyshared
versions:
- "> 10.15.2.0"
- dependency-name: javax.enterprise:cdi-api
versions:
- "> 1.1"
Expand Down
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Daether.checksums.algorithms=SHA-512,SHA-256,SHA-1,MD5
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.5/apache-maven-3.8.5-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.1/maven-wrapper-3.1.1.jar
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,19 @@
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.14.2.0</version>
<version>10.15.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyshared</artifactId>
<version>10.15.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyoptionaltools</artifactId>
<version>10.15.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -147,6 +159,17 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<configuration>
<rules>
<enforceBytecodeVersion>
<ignoredScopes>test</ignoredScopes>
</enforceBytecodeVersion>
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/site/xdoc/getting-started.xml.vm
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
file and its dependencies in the classpath.
</p>
<p>
If you are using Maven just add the following dependency to your <code>pom.xml<code>:
If you are using Maven just add the following dependency to your <code>pom.xml</code>:
</p>
<source><![CDATA[
<dependency>
Expand Down