Skip to content

Commit

Permalink
upgraded to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Dekkers committed Feb 26, 2023
1 parent b266b67 commit f4613a1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2020,2021,2022 Neural Layer
Copyright 2020,2021,2022,2023 Neural Layer

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
7 changes: 3 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This is a Maven Archetype project for roboquant called `roboquant-quickstart`. It helps to quickly start a new algo-trading project.

== Running it
You can create your own new algo-trading application by running the following command:
You can create your own new algo-trading application from scratch by running the following command:

[source,shell]
----
Expand All @@ -12,13 +12,12 @@ mvn archetype:generate \
-DarchetypeVersion=1.0.0 \
-DgroupId=org.mydomain \
-DartifactId=myapp \
-Dversion=0.1-SNAPSHOT
-Dversion=1.0-SNAPSHOT
----

You should substitute the last three parameters with your own configuration.


== Installing from source
== Installing Archetype from source
After you have cloned the GitHub repo, you can locally install an archetype just like any other Maven artefact.

[source,shell]
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.roboquant</groupId>
<artifactId>roboquant-quickstart</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<packaging>maven-archetype</packaging>

<name>roboquant quickstart</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/maven/archetype-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.
<defaultValue>1.0.0</defaultValue>
</requiredProperty>
<requiredProperty key="kotlinVersion">
<defaultValue>1.8.0</defaultValue>
<defaultValue>1.8.10</defaultValue>
</requiredProperty>
</requiredProperties>

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/archetype-resources/docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Welcome
=======
This project has been created by the `roboquant-quickstart` Maven archetype. There is already a small default application included that you can find at:
This project has been created by the `roboquant-quickstart` Maven archetype. There is a small default application included that you can find at:

src/main/kotlin/${groupId.replace('.','/')}/App.kt

Expand Down
6 changes: 3 additions & 3 deletions src/test/resources/projects/it-basic/archetype.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
groupId=archetype.it
artifactId=basic-project
version=0.1-SNAPSHOT
version=1.0-SNAPSHOT
package=it.pkg
kotlinVersion=1.8.0
roboquantVersion=1.0.0
kotlinVersion=1.8.10
roboquantVersion=1.1.0

0 comments on commit f4613a1

Please sign in to comment.