Skip to content

Commit

Permalink
migrated
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Sep 4, 2013
1 parent e46885d commit bdf9ade
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<img src="http://img.jcabi.com/logo.png" width="200px" height="48px" />

More details are here: [www.jcabi.com/jcabi-maven-plugin](http://www.jcabi.com/jcabi-maven-plugin/index.html)

## Questions?

If you have any questions about the framework, or something doesn't work as expected,
please [submit an issue here](https://github.com/jcabi/jcabi-maven-plugin/issues/new).
If you want to discuss, please use our [Google Group](https://groups.google.com/forum/#!forum/jcabi).

## How to contribute?

Fork the repository, make changes, submit a pull request.
We promise to review your changes same day and apply to
the `master` branch, if they look correct.

Please run Maven build before submitting a pull request:

```
$ mvn clean install -Pqulice
```
23 changes: 14 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
<parent>
<groupId>com.jcabi</groupId>
<artifactId>jcabi</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.7.22</version>
</parent>
<artifactId>jcabi-maven-plugin</artifactId>
<version>0.8</version>
<packaging>maven-plugin</packaging>
<name>jcabi-maven-plugin</name>
<repositories>
Expand All @@ -50,27 +51,31 @@
<url>http://repo.jfrog.org/artifactory/plugins-releases</url>
</pluginRepository>
</pluginRepositories>
<properties>
<maven.version>3.0.5</maven.version>
<sisu.version>2.3.4</sisu.version>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version>${project.version}</version>
<version>0.7.22</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aether</artifactId>
<version>${project.version}</version>
<version>0.7.22</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version>${project.version}</version>
<version>0.7.22</version>
</dependency>
<dependency>
<!-- Forward all calls to SLF4J to Maven log. -->
<groupId>${project.groupId}</groupId>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-maven-slf4j</artifactId>
<version>${project.version}</version>
<version>0.7.22</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
-->
<document xmlns="http://maven.apache.org/changes/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
<body>
<release version="0.8" date="4 Sep 2013" description="migrated to its own Github repo"/>
<release version="0.7.16" date="29 Mar 2013" description="first release"/>
</body>
</document>

0 comments on commit bdf9ade

Please sign in to comment.