Skip to content

Commit 077aa53

Browse files
author
volker
committed
2 parents 2d1384c + 6dc9c76 commit 077aa53

File tree

1 file changed

+20
-28
lines changed

1 file changed

+20
-28
lines changed

README.md

Lines changed: 20 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,12 @@
11
[![Build with Java 8](https://github.com/i-net-software/sass-compiler/actions/workflows/build8.yml/badge.svg)](https://github.com/i-net-software/sass-compiler/actions/workflows/build8.yml)
22
[![Build with Java 11](https://github.com/i-net-software/sass-compiler/actions/workflows/build11.yml/badge.svg)](https://github.com/i-net-software/sass-compiler/actions/workflows/build11.yml)
33
[![License](https://img.shields.io/github/license/i-net-software/sass-compiler.svg)](https://github.com/i-net-software/sass-compiler/blob/master/LICENSE.txt)
4+
[![Maven](https://img.shields.io/maven-central/v/de.inetsoftware/sass-compiler.svg)](https://mvnrepository.com/artifact/de.inetsoftware/sass-compiler)
45
[![JitPack](https://jitpack.io/v/i-net-software/sass-compiler.svg)](https://jitpack.io/#i-net-software/sass-compiler/master-SNAPSHOT)
56

6-
A pure Java implementation of the http://sass-lang.com compiler with the target to compile the scss sources of the [Bootstrap 5 framework](https://github.com/twbs/bootstrap) framework.
7+
A pure Java implementation of the http://sass-lang.com compiler with the target to compile the scss sources of the [Bootstrap 5 framework](https://github.com/twbs/bootstrap) framework.
78

8-
Tests
9-
=====
10-
There is an extensive test suite consisting of source scss input and expected
11-
css output imported from the sass-lang project. Today the features required by
12-
the tests in src/test/resources/sasslang are fully implemented while the
13-
tests in src/test/resources/sasslangbroken are currently expected to fail.
14-
15-
Contributing
16-
====
17-
Your contributions are more than welcome. For example, if you want
18-
to compile sources other than Bootstrap. Every PR should also contain tests.
19-
20-
Testing Snapshot
21-
====
22-
If you want test the latest snapshot then you can checkout or use [JitPack](https://jitpack.io/#i-net-software/sass-compiler).
23-
24-
For example with Gradle:
25-
```
26-
repositories {
27-
mavenCentral()
28-
maven { url 'https://jitpack.io' }
29-
}
30-
31-
dependencies {
32-
implementation 'com.github.i-net-software:sass-compiler:master-SNAPSHOT'
33-
}
34-
```
9+
You can find the project's [homepage](https://github.com/i-net-software/sass-compiler) on GitHub.
3510

3611
Dependencies
3712
====
@@ -65,3 +40,20 @@ scss.compile( ScssContext.UrlMode.ABSOLUTE );
6540
String css = scss.printState();
6641
...
6742
```
43+
44+
Testing Snapshot
45+
====
46+
If you want test the latest snapshot then you can checkout or use [JitPack](https://jitpack.io/#i-net-software/sass-compiler).
47+
48+
For example with Gradle:
49+
```
50+
repositories {
51+
mavenCentral()
52+
maven { url 'https://jitpack.io' }
53+
}
54+
55+
dependencies {
56+
implementation 'com.github.i-net-software:sass-compiler:master-SNAPSHOT'
57+
}
58+
```
59+

0 commit comments

Comments
 (0)