Skip to content

Commit 7d4f264

Browse files
committed
Edits in readme and pom.xml files regarding version
1 parent ff29f48 commit 7d4f264

3 files changed

Lines changed: 16 additions & 9 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@ mvn install -f pom_jar.xml
7676
Then run the following command to test a URI:
7777

7878
```
79-
java -jar target/fair_ontologies-0.1.0.jar -ontURI https://w3id.org/example
79+
java -jar target/fair_ontologies-x.y.z.jar -ontURI https://w3id.org/example
8080
```
8181

8282
You can also test one ontology from a file:
8383

8484
```
85-
java -jar target/fair_ontologies-0.1.0.jar -ontFile filePath
85+
java -jar target/fair_ontologies-x.y.z.jar -ontFile filePath
8686
```
8787

88-
As a result, you should see a JSON in your folder, such as the one in sample.json.
88+
As a result, you should see a JSON in your folder (validation.json).
8989

9090

91-
If you want to change the out file path you can use the flag -out
91+
If you want to change the out file path you can use the flag `-out`
9292

9393
## Documentation
9494

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>es.oeg</groupId>
1212
<artifactId>fair_ontologies</artifactId>
13-
<version>0.3.0</version>
13+
<version>0.3.1</version>
1414
<packaging>jar</packaging>
1515
<name>fair_ontologies</name>
1616
<description>FOOPS!: An Ontology Pitfall scanner for the FAIR principles</description>

pom_jar.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>es.oeg</groupId>
1212
<artifactId>fair_ontologies</artifactId>
13-
<version>0.1.0</version>
13+
<version>0.3.1</version>
1414
<packaging>jar</packaging>
1515
<name>fair_ontologies</name>
1616
<description>FOOPS!: An Ontology Pitfall scanner for the FAIR principles</description>
@@ -27,6 +27,13 @@
2727
</properties>-->
2828

2929
<dependencies>
30+
31+
<dependency>
32+
<groupId>org.springdoc</groupId>
33+
<artifactId>springdoc-openapi-ui</artifactId>
34+
<version>1.7.0</version>
35+
</dependency>
36+
3037
<dependency>
3138
<groupId>org.springframework.boot</groupId>
3239
<artifactId>spring-boot-starter-web</artifactId>
@@ -54,13 +61,13 @@
5461
<!-- jsoup HTML parser library @ https://jsoup.org/ -->
5562
<groupId>org.jsoup</groupId>
5663
<artifactId>jsoup</artifactId>
57-
<version>1.13.1</version>
64+
<version>1.15.3</version>
5865
</dependency>
5966

6067
<dependency>
6168
<groupId>com.google.code.gson</groupId>
6269
<artifactId>gson</artifactId>
63-
<version>2.8.6</version>
70+
<version>2.8.9</version>
6471
</dependency>
6572

6673
<!-- tests -->
@@ -85,7 +92,7 @@
8592
<groupId>org.springframework.boot</groupId>
8693
<artifactId>spring-boot-maven-plugin</artifactId>
8794
<configuration>
88-
<mainClass>fair.FOOPS</mainClass> <!-- Aquí se indica la clase principal alternativa -->
95+
<mainClass>fair.FOOPS</mainClass> <!-- Main class indication -->
8996
</configuration>
9097
</plugin>
9198
<plugin>

0 commit comments

Comments
 (0)