File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ I think it is just like the file `bits/stdc++.h` in C++, so I named it `JavaPlus
11
11
12
12
# install the package
13
13
14
+ ## Through GitHub Maven
15
+
14
16
firstly, you should add the following line to your ` ~/.m2/settings.xml ` file:
15
17
16
18
``` xml
@@ -85,12 +87,24 @@ And then you will see the following code in your `./m2/settings.xml` file
85
87
</settings >
86
88
```
87
89
88
- Then you can add the following code to your ` pom.xml ` file:
90
+ Then you can add the following codes to your ` pom.xml ` file:
89
91
90
92
``` xml
91
93
<dependency >
92
94
<groupId >top.mryan2005.javaplusplus</groupId >
93
95
<artifactId >javaplusplus</artifactId >
94
96
<version >1.0-SNAPSHOT</version >
95
97
</dependency >
96
- ```
98
+ ```
99
+
100
+ ## Through Maven Central Repository
101
+
102
+ You only need to add the following codes to your ` pom.xml ` file:
103
+
104
+ ``` xml
105
+ <dependency >
106
+ <groupId >top.mryan2005.maven</groupId >
107
+ <artifactId >simplifiedjava</artifactId >
108
+ <version >1.0.7-beta</version >
109
+ </dependency >
110
+ ```
You can’t perform that action at this time.
0 commit comments