Skip to content

Commit a4b6623

Browse files
author
Emil Forslund
committed
Update README.md
1 parent ebd0760 commit a4b6623

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# CodeGen
22
A model-view based code generator written in Java. It is completely object oriented to encourage reuse and increase testability. If you have a lot of code that depends on the structure of a database, a file system or any other source of information, generate the code instead!
33

4+
# Download
5+
To use CodeGen in your projects, add the following dependency to your `pom.xml`-file:
6+
```xml
7+
<dependency>
8+
<groupId>com.github.pyknic</groupId>
9+
<artifactId>codegen</artifactId>
10+
<version>1.1.2</version>
11+
</dependency>
12+
```
13+
414
# Example
515
```java
616
System.out.println(new JavaGenerator().on(
@@ -53,15 +63,5 @@ public class BasicExample {
5363
## Languages
5464
Currently only the java language is supported, but the language-dependent code is contained in a single package so that more languages can be supported in the future. Most of the java package can probably be reused if the language in question is similair in syntax.
5565

56-
# Download
57-
To use CodeGen in your projects, add the following dependency to your `pom.xml`-file:
58-
```xml
59-
<dependency>
60-
<groupId>com.github.pyknic</groupId>
61-
<artifactId>codegen</artifactId>
62-
<version>1.1.2</version>
63-
</dependency>
64-
```
65-
6666
# License
6767
This project is available under the [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0).

0 commit comments

Comments
 (0)