Skip to content

Commit 3ef61f6

Browse files
committed
cssom: Milestone version 0.2
1 parent 8b264a8 commit 3ef61f6

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,24 @@ git clone https://github.com/css4j/cssom-apis.git
2828
cd cssom-apis
2929
./gradlew build
3030
```
31-
or just `gradlew build` (without the `./`) on a Windows command prompt.
3231

3332
<br/>
3433

3534
### Deploying to a Maven repository
3635

3736
Use:
3837

39-
- `gradlew publishToMavenLocal` to install both modules in your local Maven repository.
38+
- `./gradlew publishToMavenLocal` to install both modules in your local Maven repository.
4039

41-
- `gradlew :cssom-api:publishToMavenLocal` to install the cssom-api module into your local Maven repository.
40+
- `./gradlew :cssom-api:publishToMavenLocal` to install the cssom-api module into your local Maven repository.
4241

43-
- `gradlew :domview-api:publishToMavenLocal` to install the domview-api module into your local Maven repository.
42+
- `./gradlew :domview-api:publishToMavenLocal` to install the domview-api module into your local Maven repository.
4443

45-
- `gradlew publish` to deploy both modules to a (generally remote) Maven repository.
44+
- `./gradlew publish` to deploy both modules to a (generally remote) Maven repository.
4645

47-
- `gradlew :cssom-api:publish` to deploy the cssom-api module to a Maven repository.
46+
- `./gradlew :cssom-api:publish` to deploy the cssom-api module to a Maven repository.
4847

49-
- `gradlew :domview-api:publish` to deploy the domview-api module to a Maven repository.
48+
- `./gradlew :domview-api:publish` to deploy the domview-api module to a Maven repository.
5049

5150
Before deploying to a remote Maven repository, please read the
5251
`publishing.repositories.maven` block of
@@ -83,7 +82,7 @@ Then, in your `build.gradle` file you can list the dependencies, for example:
8382

8483
```groovy
8584
dependencies {
86-
api 'io.sf.w3:cssom-api:0.1'
85+
api 'io.sf.w3:cssom-api:0.2'
8786
}
8887
```
8988

cssom-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616

1717
description = 'io.sf.w3:cssom-api'
1818

19-
version = '0.1'
19+
version = '0.2'
2020

2121
publishing.publications.maven(MavenPublication).pom {
2222
description = "CSS OM 1.0-pre API Java binding"

0 commit comments

Comments
 (0)