Skip to content

Commit

Permalink
chore: remove unused maven profile (#262)
Browse files Browse the repository at this point in the history
This build profile is no longer needed, as it has been moved to the
client library together with the general Connection API.
  • Loading branch information
olavloite committed Nov 8, 2020
1 parent c9906c9 commit c6e7c3b
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions pom.xml
Expand Up @@ -321,41 +321,6 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<!-- Profile for generating new sql test scripts. See ConnectionImplGeneratedSqlScriptTest
for more information. -->
<id>generate-test-sql-scripts</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>generateTestScripts</id>
<phase>compile</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.google.cloud.spanner.jdbc.SqlTestScriptsGenerator</mainClass>
<systemProperties>
<systemProperty>
<key>do_log_statements</key>
<value>true</value>
</systemProperty>
</systemProperties>
<classpathScope>test</classpathScope>
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
Expand Down

0 comments on commit c6e7c3b

Please sign in to comment.