diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-24 16:46:37 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-26 07:38:05 +0100 |
commit | 76a4e8fb654e850944ff179ba945989fe7afecec (patch) | |
tree | 37107caf2462577eeba0b657728b18535f127e51 /pom.xml | |
parent | 03acebc23f8902d64efd7689cadb2711f9ac67b3 (diff) | |
download | sonarqube-76a4e8fb654e850944ff179ba945989fe7afecec.tar.gz sonarqube-76a4e8fb654e850944ff179ba945989fe7afecec.zip |
Drop usages of MyBatis#openSession()
in favor of DbClient#openSession()
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonarsource.parent</groupId> @@ -1219,7 +1220,8 @@ <goal>compile</goal> </goals> <configuration> - <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> + <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} + </protocArtifact> <protoSourceRoot>${project.basedir}/src/main/protobuf</protoSourceRoot> <outputDirectory>${project.build.directory}/generated-sources/protobuf</outputDirectory> </configuration> @@ -1275,7 +1277,8 @@ <goal>test-compile</goal> </goals> <configuration> - <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> + <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} + </protocArtifact> <protoTestSourceRoot>${project.basedir}/src/test/protobuf</protoTestSourceRoot> <outputDirectory>${project.build.directory}/generated-test-sources/protobuf</outputDirectory> </configuration> |