SomMeri / less4j

Less language is an extension of css and less4j compiles it into regular css. Less adds several dynamic features into css: variables, expressions, nested rules, and so on. Less was designed to be compatible with css and any correct css file is also correct less file.
145 stars 47 forks source link

Please add source jar generation goal to pom.xml #319

Closed a701440 closed 8 years ago

a701440 commented 8 years ago

Something alone the lines:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-source-plugin</artifactId>
            <executions>
                <execution>
                    <id>attach-sources</id>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
SomMeri commented 8 years ago

Fixed by #320