Skip to content

Commit

Permalink
ci: really odd behaviour with pom
Browse files Browse the repository at this point in the history
Somehow pom.xml update during ci is not always recognized for jar-build
  • Loading branch information
TimoKramer committed May 22, 2023
1 parent 85d7575 commit 8daba5a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 71 deletions.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
build_cljs:
type: boolean
default: false
jarname:
type: string
default: "library"
steps:
- attach_workspace:
at: /home/circleci
Expand All @@ -30,7 +33,7 @@ jobs:
- persist_to_workspace:
root: /home/circleci/
paths:
- replikativ/replikativ-konserve-jdbc.jar
- replikativ/replikativ-<<parameters.jarname>>.jar

workflows:
build-test-and-deploy:
Expand All @@ -47,6 +50,7 @@ workflows:
requires:
- tools/setup
- build:
jarname: "konserve-jdbc"
build_cljs: false
context: dockerhub-deploy
requires:
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
/classes
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
Expand Down
69 changes: 1 addition & 68 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<packaging>jar</packaging>
<groupId>io.replikativ</groupId>
<artifactId>konserve-jdbc</artifactId>
<version>0.1.3</version>
<version>0.1.4</version>
<description>A generic JDBC backend for konserve.</description>
<build>
<sourceDirectory>src</sourceDirectory>
Expand All @@ -15,71 +15,4 @@
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.1</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.16.1.1</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.2.0.jre11</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.6.0</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.5</version>
</dependency>
<dependency>
<groupId>com.fzakaria</groupId>
<artifactId>slf4j-timbre</artifactId>
<version>0.3.21</version>
</dependency>
<dependency>
<groupId>com.taoensso</groupId>
<artifactId>timbre</artifactId>
<version>6.1.0</version>
</dependency>
<dependency>
<groupId>com.github.seancorfield</groupId>
<artifactId>next.jdbc</artifactId>
<version>1.3.874</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.25</version>
</dependency>
<dependency>
<groupId>io.replikativ</groupId>
<artifactId>superv.async</artifactId>
<version>0.3.46</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.41.2.2</version>
</dependency>
<dependency>
<groupId>io.replikativ</groupId>
<artifactId>konserve</artifactId>
<version>0.7.311</version>
</dependency>
</dependencies>
</project>

0 comments on commit 8daba5a

Please sign in to comment.