You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
102
+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
101
103
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
102
104
103
105
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
@@ -110,7 +112,9 @@ There are some guidelines which will make applying PRs easier for us:
110
112
+ No tabs! Please use spaces for indentation.
111
113
+ Respect the existing code style for each file.
112
114
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
113
-
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
115
+
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
116
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
117
+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
114
118
115
119
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
116
120
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-numbers/download_numbers.cgi).
63
65
64
-
Alternatively, you can pull it from the central Maven repositories:
66
+
Alternatively, you can pull it from the central Maven repositories:
65
67
66
68
```xml
67
69
<dependency>
68
70
<groupId>org.apache.commons</groupId>
69
71
<artifactId>commons-numbers-angle</artifactId>
70
-
<version>1.2</version>
72
+
<version>1.3</version>
71
73
</dependency>
72
74
```
73
75
74
76
Building
75
77
--------
76
78
77
-
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
79
+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
78
80
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
79
81
80
82
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
@@ -87,7 +89,9 @@ There are some guidelines which will make applying PRs easier for us:
87
89
+ No tabs! Please use spaces for indentation.
88
90
+ Respect the existing code style for each file.
89
91
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
90
-
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
92
+
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
93
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
94
+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
91
95
92
96
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
93
97
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-numbers/download_numbers.cgi).
63
65
64
-
Alternatively, you can pull it from the central Maven repositories:
66
+
Alternatively, you can pull it from the central Maven repositories:
65
67
66
68
```xml
67
69
<dependency>
68
70
<groupId>org.apache.commons</groupId>
69
71
<artifactId>commons-numbers-arrays</artifactId>
70
-
<version>1.2</version>
72
+
<version>1.3</version>
71
73
</dependency>
72
74
```
73
75
74
76
Building
75
77
--------
76
78
77
-
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
79
+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
78
80
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
79
81
80
82
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
@@ -87,7 +89,9 @@ There are some guidelines which will make applying PRs easier for us:
87
89
+ No tabs! Please use spaces for indentation.
88
90
+ Respect the existing code style for each file.
89
91
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
90
-
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
92
+
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
93
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
94
+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
91
95
92
96
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
93
97
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
Copy file name to clipboardExpand all lines: commons-numbers-bom/README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
(the "License"); you may not use this file except in compliance with
7
7
the License. You may obtain a copy of the License at
8
8
9
-
http://www.apache.org/licenses/LICENSE-2.0
9
+
https://www.apache.org/licenses/LICENSE-2.0
10
10
11
11
Unless required by applicable law or agreed to in writing, software
12
12
distributed under the License is distributed on an "AS IS" BASIS,
@@ -46,7 +46,7 @@ the Bill of Materials (BOM) for dependency management:
46
46
<dependency>
47
47
<groupId>org.apache.commons</groupId>
48
48
<artifactId>commons-numbers-bom</artifactId>
49
-
<version>1.2</version>
49
+
<version>1.3</version>
50
50
<type>pom</type>
51
51
<scope>import</scope>
52
52
</dependency>
@@ -57,7 +57,7 @@ the Bill of Materials (BOM) for dependency management:
57
57
Building
58
58
--------
59
59
60
-
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
60
+
Building requires a Java JDK and [Apache Maven](https://maven.apache.org/).
61
61
The required Java version is found in the `pom.xml` as the `maven.compiler.source` property.
62
62
63
63
From a command shell, run `mvn` without arguments to invoke the default Maven goal to run all tests and checks.
@@ -70,7 +70,9 @@ There are some guidelines which will make applying PRs easier for us:
70
70
+ No tabs! Please use spaces for indentation.
71
71
+ Respect the existing code style for each file.
72
72
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
73
-
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn```.
73
+
+ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`.
74
+
+ Before you push a PR, run `mvn` (without arguments). This runs the default goal which contains all build checks.
75
+
+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco`
74
76
75
77
If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
76
78
You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
0 commit comments