Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Shipping Enjoyer
Orekit
Commits
b9385527
Commit
b9385527
authored
Nov 03, 2017
by
Luc Maisonobe
Browse files
Releasing Orekit 8.0.1.
parent
75547b65
Changes
7
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
b9385527
...
...
@@ -36,10 +36,13 @@
<orekit.maven-project-info-reports-plugin.version>
2.9
</orekit.maven-project-info-reports-plugin.version>
<orekit.maven-resources-plugin.version>
3.0.1
</orekit.maven-resources-plugin.version>
<orekit.maven-site-plugin.version>
3.5.1
</orekit.maven-site-plugin.version>
<orekit.maven-source-plugin.version>
3.0.1
</orekit.maven-source-plugin.version>
<orekit.maven-surefire-plugin.version>
2.19.1
</orekit.maven-surefire-plugin.version>
<orekit.maven-surefire-report-plugin.version>
2.19.1
</orekit.maven-surefire-report-plugin.version>
<orekit.jgit.buildnumber.version>
1.2.10
</orekit.jgit.buildnumber.version>
<orekit.build-helper-maven-plugin.version>
3.0.0
</orekit.build-helper-maven-plugin.version>
<orekit.nexus-staging-maven-plugin.version>
1.6.8
</orekit.nexus-staging-maven-plugin.version>
<orekit.maven-gpg-plugin.version>
1.6
</orekit.maven-gpg-plugin.version>
<orekit.maven-install-plugin.version>
2.5.2
</orekit.maven-install-plugin.version>
<orekit.hipparchus.version>
1.0
</orekit.hipparchus.version>
<orekit.junit.version>
4.12
</orekit.junit.version>
<orekit.compiler.source>
1.8
</orekit.compiler.source>
...
...
@@ -319,8 +322,9 @@
<version>
${orekit.maven-assembly-plugin.version}
</version>
<configuration>
<descriptors>
<descriptor>
src/main/assembly/source-assembly.xml
</descriptor>
<descriptor>
src/main/assembly/binary-assembly.xml
</descriptor>
<descriptor>
src/main/assembly/source-jar-assembly.xml
</descriptor>
<descriptor>
src/main/assembly/source-distribution-assembly.xml
</descriptor>
<descriptor>
src/main/assembly/binary-distribution-assembly.xml
</descriptor>
</descriptors>
</configuration>
</plugin>
...
...
@@ -550,35 +554,6 @@
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>
org.eclipse.m2e
</groupId>
<artifactId>
lifecycle-mapping
</artifactId>
<version>
1.0.0
</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<versionRange>
[${orekit.maven-bundle-plugin.version},)
</versionRange>
<goals>
<goal>
manifest
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
...
...
@@ -687,21 +662,119 @@
<id>
release
</id>
<build>
<plugins>
<plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-
source
-plugin
</artifactId>
<version>
${orekit.maven-
source
-plugin.version}
</version>
<artifactId>
maven-
javadoc
-plugin
</artifactId>
<version>
${orekit.maven-
javadoc
-plugin.version}
</version>
<executions>
<execution>
<id>
create-source-jar
</id>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
<phase>
package
</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.sonatype.plugins
</groupId>
<artifactId>
nexus-staging-maven-plugin
</artifactId>
<version>
${orekit.nexus-staging-maven-plugin.version}
</version>
<extensions>
true
</extensions>
<configuration>
<serverId>
ossrh
</serverId>
<nexusUrl>
https://oss.sonatype.org/
</nexusUrl>
<autoReleaseAfterClose>
false
</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
build-helper-maven-plugin
</artifactId>
<version>
${orekit.build-helper-maven-plugin.version}
</version>
<executions>
<execution>
<id>
attach-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
attach-artifact
</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>
${basedir}/target/orekit-${project.version}-sources.jar
</file>
<type>
source-jar
</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-gpg-plugin
</artifactId>
<version>
${orekit.maven-gpg-plugin.version}
</version>
<configuration>
<gpgArguments>
<arg>
--digest-algo=SHA512
</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>
sign-artifacts
</id>
<phase>
verify
</phase>
<goals>
<goal>
sign
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-install-plugin
</artifactId>
<version>
${orekit.maven-install-plugin.version}
</version>
<configuration>
<createChecksum>
true
</createChecksum>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
eclipse
</id>
<activation>
<property>
<name>
m2e.version
</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<groupId>
org.eclipse.m2e
</groupId>
<artifactId>
lifecycle-mapping
</artifactId>
<version>
1.0.0
</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.felix
</groupId>
<artifactId>
maven-bundle-plugin
</artifactId>
<versionRange>
[${orekit.maven-bundle-plugin.version},)
</versionRange>
<goals>
<goal>
manifest
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
...
...
src/main/assembly/binary-assembly.xml
deleted
100644 → 0
View file @
75547b65
<assembly>
<id>
bin
</id>
<formats>
<format>
zip
</format>
</formats>
<componentDescriptors>
<componentDescriptor>
src/main/assembly/misc-files.xml
</componentDescriptor>
<componentDescriptor>
src/main/assembly/jar-files.xml
</componentDescriptor>
</componentDescriptors>
</assembly>
\ No newline at end of file
src/main/assembly/
jar-files
.xml
→
src/main/assembly/
binary-distribution-assembly
.xml
View file @
b9385527
<component>
<assembly>
<id>
bin
</id>
<formats>
<format>
zip
</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>
README.txt
</include>
<include>
LICENSE.txt
</include>
<include>
NOTICE.txt
</include>
</includes>
</fileSet>
<fileSet>
<directory>
target
</directory>
<outputDirectory></outputDirectory>
...
...
@@ -8,4 +19,4 @@
</includes>
</fileSet>
</fileSets>
</component>
\ No newline at end of file
</assembly>
\ No newline at end of file
src/main/assembly/source-assembly.xml
deleted
100644 → 0
View file @
75547b65
<assembly>
<id>
sources
</id>
<formats>
<format>
zip
</format>
</formats>
<componentDescriptors>
<componentDescriptor>
src/main/assembly/misc-files.xml
</componentDescriptor>
<componentDescriptor>
src/main/assembly/building-files.xml
</componentDescriptor>
</componentDescriptors>
</assembly>
\ No newline at end of file
src/main/assembly/
building-files
.xml
→
src/main/assembly/
source-distribution-assembly
.xml
View file @
b9385527
<component>
<assembly>
<id>
sources
</id>
<formats>
<format>
zip
</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>
BUILDING.txt
</include>
<include>
pom.xml
</include>
<include>
build.xml
</include>
<include>
checkstyle.xml
</include>
<include>
findbugs-exclude-filter.xml
</include>
<include>
license-header.txt
</include>
<include>
README.txt
</include>
<include>
LICENSE.txt
</include>
<include>
NOTICE.txt
</include>
<include>
BUILDING.txt
</include>
<include>
pom.xml
</include>
<include>
build.xml
</include>
<include>
checkstyle.xml
</include>
<include>
findbugs-exclude-filter.xml
</include>
<include>
license-header.txt
</include>
</includes>
<useDefaultExcludes>
true
</useDefaultExcludes>
</fileSet>
...
...
@@ -16,4 +23,4 @@
<useDefaultExcludes>
true
</useDefaultExcludes>
</fileSet>
</fileSets>
</component>
\ No newline at end of file
</assembly>
\ No newline at end of file
src/main/assembly/
misc-files
.xml
→
src/main/assembly/
source-jar-assembly
.xml
View file @
b9385527
<component>
<assembly>
<id>
sources
</id>
<formats>
<format>
jar
</format>
</formats>
<includeBaseDirectory>
false
</includeBaseDirectory>
<fileSets>
<fileSet>
<includes>
<include>
README.txt
</include>
<include>
LICENSE.txt
</include>
<include>
NOTICE.txt
</include>
</includes>
</fileSet>
<fileSet>
<directory>
src/main/java
</directory>
<outputDirectory>
.
</outputDirectory>
<includes>
<include>
**/*.java
</include>
</includes>
<useDefaultExcludes>
true
</useDefaultExcludes>
</fileSet>
</fileSets>
</
component
>
</
assembly
>
\ No newline at end of file
src/site/markdown/downloads.md
View file @
b9385527
...
...
@@ -43,10 +43,10 @@ as required.
| package | link |
|----------|---------------------------------------------------------------------------------------------------------------|
| source |
[
orekit-8.0.1-sources.zip
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-8.0.1-sources.zip
)
|
| binary |
[
orekit-8.0.1.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-8.0.1.jar
)
|
| javadoc |
[
orekit-8.0.1-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-8.0.1-javadoc.jar
)
|
version 8.0.1 downloads (release date: 2017-11-0
1
)
| source |
[
orekit-8.0.1-sources.zip
](
https://www.orekit.org/forge/attachments/download/
684
/orekit-8.0.1-sources.zip
)
|
| binary |
[
orekit-8.0.1.jar
](
https://www.orekit.org/forge/attachments/download/
685
/orekit-8.0.1.jar
)
|
| javadoc |
[
orekit-8.0.1-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
686
/orekit-8.0.1-javadoc.jar
)
|
version 8.0.1 downloads (release date: 2017-11-0
3
)
| package | link |
|----------|-----------------------------------------------------------------------------------------------------------|
...
...
@@ -57,10 +57,10 @@ version 8.0 downloads (release date: 2016-06-30)
| package | link |
|----------|---------------------------------------------------------------------------------------------------------------|
| source |
[
orekit-7.2.1-sources.zip
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-7.2.1-sources.zip
)
|
| binary |
[
orekit-7.2.1.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-7.2.1.jar
)
|
| javadoc |
[
orekit-7.2.1-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-7.2.1-javadoc.jar
)
|
version 7.2.1 downloads (release date: 2017-11-0
1
)
| source |
[
orekit-7.2.1-sources.zip
](
https://www.orekit.org/forge/attachments/download/
678
/orekit-7.2.1-sources.zip
)
|
| binary |
[
orekit-7.2.1.jar
](
https://www.orekit.org/forge/attachments/download/
679
/orekit-7.2.1.jar
)
|
| javadoc |
[
orekit-7.2.1-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
680
/orekit-7.2.1-javadoc.jar
)
|
version 7.2.1 downloads (release date: 2017-11-0
3
)
| package | link |
|----------|-----------------------------------------------------------------------------------------------------------|
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment