github.com/dolthub/go-mysql-server@v0.18.0/_integration/jdbc-mariadb/pom.xml (about)

     1  <?xml version="1.0" encoding="UTF-8"?>
     2  <!-- Copyright 2020-2021 Dolthub, Inc. -->
     3  <!-- -->
     4  <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
     5  <!-- you may not use this file except in compliance with the License. -->
     6  <!-- You may obtain a copy of the License at -->
     7  <!-- -->
     8  <!--     http://www.apache.org/licenses/LICENSE-2.0 -->
     9  <!-- -->
    10  <!-- Unless required by applicable law or agreed to in writing, software -->
    11  <!-- distributed under the License is distributed on an "AS IS" BASIS, -->
    12  <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
    13  <!-- See the License for the specific language governing permissions and -->
    14  <!-- limitations under the License. -->
    15  
    16  <project xmlns="http://maven.apache.org/POM/4.0.0"
    17           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    18           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    19      <modelVersion>4.0.0</modelVersion>
    20  
    21      <groupId>tech.sourced</groupId>
    22      <artifactId>jdbc-mariadb</artifactId>
    23      <version>1.0-SNAPSHOT</version>
    24  
    25      <properties>
    26          <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    27          <maven.compiler.source>1.8</maven.compiler.source>
    28          <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
    29  
    30          <junit.jupiter.version>5.3.1</junit.jupiter.version>
    31      </properties>
    32  
    33      <dependencies>
    34          <dependency>
    35              <groupId>org.junit.jupiter</groupId>
    36              <artifactId>junit-jupiter-api</artifactId>
    37              <version>${junit.jupiter.version}</version>
    38              <scope>test</scope>
    39          </dependency>
    40  
    41          <dependency>
    42              <groupId>org.junit.jupiter</groupId>
    43              <artifactId>junit-jupiter-params</artifactId>
    44              <version>${junit.jupiter.version}</version>
    45              <scope>test</scope>
    46          </dependency>
    47  
    48          <dependency>
    49              <groupId>org.junit.jupiter</groupId>
    50              <artifactId>junit-jupiter-engine</artifactId>
    51              <version>${junit.jupiter.version}</version>
    52              <scope>test</scope>
    53          </dependency>
    54  
    55          <dependency>
    56              <groupId>org.mariadb.jdbc</groupId>
    57              <artifactId>mariadb-java-client</artifactId>
    58              <version>2.3.0</version>
    59          </dependency>
    60      </dependencies>
    61  
    62      <build>
    63          <plugins>
    64              <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
    65              <plugin>
    66                  <artifactId>maven-surefire-plugin</artifactId>
    67                  <version>2.22.0</version>
    68              </plugin>
    69          </plugins>
    70      </build>
    71  
    72  </project>