Skip to content

Commit 6283134

Browse files
committed
96: si.uom.quantity present in si-units and si-quantity
Task-Url: #96
1 parent 7f363f4 commit 6283134

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.circleci/config.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
environment:
2121
# Customize the JVM maximum heap limit
2222
MAVEN_OPTS: -Xmx3200m
23-
23+
2424
steps:
2525
- checkout
2626

2727
# run tests!
28-
- run:
28+
- run:
2929
name: Running tests
30-
command: mvn clean test
31-
# The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass
32-
resource_class: large
30+
command: mvn integration-test
31+
32+
3333
deployment:
3434
docker:
3535
# specify the version you desire here
@@ -40,16 +40,17 @@ jobs:
4040
environment:
4141
# Customize the JVM maximum heap limit
4242
MAVEN_OPTS: -Xmx3200m
43-
43+
4444
steps:
4545
- checkout
4646

47-
# run deployment!
47+
# run deployment!
4848
- run:
49-
name: Deploying snapshot
49+
name: Deploying snapshots
5050
command: mvn deploy -Dmaven.test.skip -DcreateDocs=true -s settings.xml
51+
5152
workflows:
52-
build_deploy:
53+
build_deploy:
5354
unless: << pipeline.parameters.deploy_release >>
5455
jobs:
5556
- build:

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<maven.compile.sourceLevel>${jdkVersion}</maven.compile.sourceLevel>
3535
<thisYear>2025</thisYear>
3636
<bnd.version>7.0.0</bnd.version>
37+
<osgi.version>6.0.0</osgi.version>
3738
<build-helper.version>3.6.0</build-helper.version>
3839
<maven.surefire.version>3.5.3</maven.surefire.version>
3940
</properties>
@@ -195,18 +196,21 @@
195196
<dependency>
196197
<groupId>org.osgi</groupId>
197198
<artifactId>org.osgi.annotation</artifactId>
199+
<version>${osgi.version}</version>
198200
<scope>provided</scope>
199201
<optional>true</optional>
200202
</dependency>
201203
<dependency>
202204
<groupId>org.osgi</groupId>
203205
<artifactId>org.osgi.compendium</artifactId>
206+
<version>${osgi.version}</version>
204207
<scope>provided</scope>
205208
<optional>true</optional>
206209
</dependency>
207210
<dependency>
208211
<groupId>org.osgi</groupId>
209212
<artifactId>org.osgi.core</artifactId>
213+
<version>${osgi.version}</version>
210214
<scope>provided</scope>
211215
<optional>true</optional>
212216
</dependency>

0 commit comments

Comments
 (0)