Skip to content

Commit

Permalink
dbeaver/pro#3589 1.1.0 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rider committed Nov 6, 2024
1 parent 72aaa6f commit f0aaaec
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 5 deletions.
2 changes: 1 addition & 1 deletion com.dbeaver.jdbc.driver.libsql/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: DBeaver LibSQL JDBC Driver
Bundle-SymbolicName: com.dbeaver.jdbc.driver.libsql
Bundle-Version: 1.0.1.qualifier
Bundle-Version: 1.1.0.qualifier
Bundle-Release-Date: 20230522
Bundle-RequiredExecutionEnvironment: JavaSE-17
Export-Package: com.dbeaver.jdbc.driver.libsql,
Expand Down
28 changes: 26 additions & 2 deletions com.dbeaver.jdbc.driver.libsql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.dbeaver.jdbc.libsql</groupId>
<groupId>com.dbeaver.jdbc</groupId>
<artifactId>jdbc-libsql</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>com.dbeaver.jdbc.driver.libsql</artifactId>
Expand All @@ -17,6 +17,30 @@

<packaging>eclipse-plugin</packaging>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<name>Serge Rider</name>
<email>[email protected]</email>
<url>https://github.com/serge-rider</url>
<organization>DBeaver Corp</organization>
<organizationUrl>https://github.com/dbeaver</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:[email protected]:dbeaver/dbeaver-jdbc-libsql.git</connection>
<developerConnection>scm:git:[email protected]:dbeaver/dbeaver-jdbc-libsql.git</developerConnection>
<url>[email protected]:dbeaver/dbeaver-jdbc-libsql.git</url>
</scm>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down
25 changes: 23 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<modelVersion>4.0.0</modelVersion>
<groupId>com.dbeaver.jdbc.libsql</groupId>
<groupId>com.dbeaver.jdbc</groupId>
<artifactId>jdbc-libsql</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>

<packaging>pom</packaging>
<name>DBeaver LibSQL JDBC Project</name>
Expand All @@ -20,6 +20,27 @@
<relativePath>../dbeaver-common</relativePath>
</parent>

<profiles>
<profile>
<id>sonatypeDeploy</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>false</autoPublish>
<waitUntil>validated</waitUntil>
<excludeArtifacts>jdbc-libsql</excludeArtifacts>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<modules>
<module>com.dbeaver.jdbc.driver.libsql</module>
</modules>
Expand Down

0 comments on commit f0aaaec

Please sign in to comment.