Skip to content

Commit

Permalink
Switch to HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Sep 28, 2018
1 parent f7f7110 commit bb1fd39
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 28 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -15,6 +15,7 @@ install:
script:
- mvn install site -e -B
after_success:
- if [[ $TRAVIS_TAG =~ ^website.*$ ]] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk10" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
- if [[ $TRAVIS_TAG =~ ^v.*$ ]] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk10" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
# secure keys for GITHUB_TOKEN
env:
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Expand Up @@ -2,4 +2,4 @@ Joda Beans
Copyright 2001-present Stephen Colebourne

This product includes software developed by
Joda.org (http://www.joda.org/).
Joda.org (https://www.joda.org/).
20 changes: 10 additions & 10 deletions README.md
Expand Up @@ -7,7 +7,7 @@ An API is provided that defines a bean and property model, together with a code
The key concept is to allow each property on a bean to be accessed as an object.
This enables technologies such as XPath, XML conversion, DB mappings, WebApp validation and Swing bindings.

Joda-Beans is licensed under the business-friendly [Apache 2.0 licence](http://www.joda.org/joda-beans/license.html).
Joda-Beans is licensed under the business-friendly [Apache 2.0 licence](https://www.joda.org/joda-beans/licenses.html).


### Why Joda Beans?
Expand Down Expand Up @@ -37,22 +37,22 @@ See these sample classes used for testing -
### Documentation
Various documentation is available:

* The [home page](http://www.joda.org/joda-beans/)
* The helpful [user guide](http://www.joda.org/joda-beans/userguide.html)
* The [Javadoc](http://www.joda.org/joda-beans/apidocs/index.html)
* The change notes for the [releases](http://www.joda.org/joda-beans/changes-report.html)
* The [home page](https://www.joda.org/joda-beans/)
* The helpful [user guide](https://www.joda.org/joda-beans/userguide.html)
* The [Javadoc](https://www.joda.org/joda-beans/apidocs/index.html)
* The change notes for the [releases](https://www.joda.org/joda-beans/changes-report.html)
* The [related projects](related.html) including Maven, Gradle and IntelliJ integration


### Releases
[Release 2.3](http://www.joda.org/joda-beans/download.html) is the current release.
[Release 2.3](https://www.joda.org/joda-beans/download.html) is the current release.
This release is considered stable and worthy of the 2.x tag.
There are only [minor incompatibilities](http://www.joda.org/joda-beans/migration.html) with the 1.x codebase.
There are only [minor incompatibilities](https://www.joda.org/joda-beans/migration.html) with the 1.x codebase.

Joda-Beans requires Java SE 8 or later and depends on [Joda-Convert](http://www.joda.org/joda-convert/).
There are a number of [optional dependencies](http://www.joda.org/joda-beans/dependencies.html) which help with integration.
Joda-Beans requires Java SE 8 or later and depends on [Joda-Convert](https://www.joda.org/joda-convert/).
There are a number of [optional dependencies](https://www.joda.org/joda-beans/dependencies.html) which help with integration.

Available in the [Maven Central repository](http://search.maven.org/#artifactdetails|org.joda|joda-beans|2.3|jar)
Available in the [Maven Central repository](https://search.maven.org/search?q=g:org.joda%20AND%20a:joda-beans&core=gav)

For Java SE 6 compatibility, use [release 1.14](https://github.com/JodaOrg/joda-beans/releases/tag/v1.14).

Expand Down
2 changes: 1 addition & 1 deletion RELEASE-NOTES.txt
Expand Up @@ -5,7 +5,7 @@ Joda-Beans is a library that provides full bean and property support for the JDK

The release runs on JDK 6 or later.

See http://www.joda.org/joda-beans/changes-report.html for changes
See https://www.joda.org/joda-beans/changes-report.html for changes


Feedback
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -8,15 +8,15 @@
<parent>
<groupId>org.joda</groupId>
<artifactId>joda-parent</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>joda-beans</artifactId>
<packaging>jar</packaging>
<name>Joda-Beans</name>
<version>2.4-SNAPSHOT</version>
<description>Beans and Properties</description>
<url>http://www.joda.org/${joda.artifactId}/</url>
<url>https://www.joda.org/${joda.artifactId}/</url>

<!-- ==================================================================== -->
<inceptionYear>2007</inceptionYear>
Expand Down Expand Up @@ -182,7 +182,7 @@
<version>1.1.1</version>
<configuration>
<releaseName>Release v${project.version}</releaseName>
<description>See the [change notes](http://www.joda.org/${joda.artifactId}/changes-report.html) for more information.</description>
<description>See the [change notes](https://www.joda.org/${joda.artifactId}/changes-report.html) for more information.</description>
<tag>v${project.version}</tag>
<overwriteArtifact>true</overwriteArtifact>
<fileSets>
Expand Down
8 changes: 4 additions & 4 deletions src/site/markdown/index.md
Expand Up @@ -99,7 +99,7 @@ Joda-Beans simplifies this by code generating builder classes for each immutable

Once beans and properties are defined, it is possible to use them in powerful ways.
A fast and efficient serialization mechanism is provided to read and write JSON, XML and binary
using [Joda-Convert](http://www.joda.org/joda-convert/) for object to string conversion.
using [Joda-Convert](/joda-convert/) for object to string conversion.
Further integration is included for MongoDB and Freemarker.

---
Expand All @@ -108,12 +108,12 @@ Further integration is included for MongoDB and Freemarker.

[Release 2.3](download.html) is the current release.
This release is considered stable and worthy of the 2.x tag.
There are only [minor incompatibilities](http://www.joda.org/joda-beans/migration.html) with the 1.x codebase.
There are only [minor incompatibilities](migration.html) with the 1.x codebase.

Joda-Beans requires Java SE 8 or later and depends on [Joda-Convert](http://www.joda.org/joda-convert/).
Joda-Beans requires Java SE 8 or later and depends on [Joda-Convert](/joda-convert/).
There are a number of [optional dependencies](dependencies.html) which help with integration.

Available in [Maven Central](http://search.maven.org/#artifactdetails%7Corg.joda%7Cjoda-beans%7C2.3%7Cjar).
Available in [Maven Central](https://search.maven.org/search?q=g:org.joda%20AND%20a:joda-beans&core=gav).

```xml
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions src/site/markdown/licensecover.md
@@ -1,7 +1,7 @@
## License information

Joda-Beans source code is released under the business-friendly [Apache 2.0 license](licenses.html).
This is the same license as all [Apache Software Foundation](http://www.apache.org) projects.
This is the same license as all [Apache Software Foundation](https://www.apache.org) projects.

As is normal with the Apache 2.0 license, a NOTICE file exists for Joda-Beans:

Expand All @@ -10,5 +10,5 @@ Joda Beans
Copyright 2001-present Stephen Colebourne
This product includes software developed by
Joda.org (http://www.joda.org/).
Joda.org (https://www.joda.org/).
```
4 changes: 2 additions & 2 deletions src/site/markdown/userguide.md
Expand Up @@ -89,7 +89,7 @@ The access to the field-level annotations provided by the meta-property is also

A Joda-Beans meta-property provides the ability to set a property from a string.
The conversion between the string and the type of the property, such as `int` or `URI`, is handled by
[Joda-Convert](http://www.joda.org/joda-convert/). The converter can be customised, and is exposed by `JodaBeanUtils`.
[Joda-Convert](/joda-convert/). The converter can be customised, and is exposed by `JodaBeanUtils`.

When iterating over a bean object graph, being able to determine which objects are "leaves", the simple
types that have a direct string representation, is a very useful ability.
Expand Down Expand Up @@ -138,4 +138,4 @@ Joda-Beans has been integrated with Freemarker, MongoDB and Kryo.
The integration support classes are included in the jar file but only work when the optional dependency is present.
Note that it is entirely valid to use Joda-Beans without additional jar file dependencies apart from Joda-Convert.

The beans are also widely use in the [Strata](http://strata.opengamma.io/) market risk project.
The beans are also widely use in the [Strata](https://strata.opengamma.io/) market risk project.
11 changes: 6 additions & 5 deletions src/site/site.xml
Expand Up @@ -34,6 +34,7 @@
<toc>false</toc>
<breadcrumbs>false</breadcrumbs>
<markPageHeader>false</markPageHeader>
<protocolRelativeURLs>true</protocolRelativeURLs>
<pages>
<index>
<sections>
Expand Down Expand Up @@ -61,7 +62,7 @@
<body>
<head>
<![CDATA[
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<link rel="author" href="https://plus.google.com/113137868744510231215"/>]]>
</head>

Expand All @@ -86,10 +87,10 @@
</menu>

<menu name="Joda">
<item name="Home" href="http://www.joda.org"/>
<item name="Convert" href="http://www.joda.org/joda-convert/"/>
<item name="Money" href="http://www.joda.org/joda-money/"/>
<item name="Time" href="http://www.joda.org/joda-time/"/>
<item name="Home" href="https://www.joda.org"/>
<item name="Convert" href="https://www.joda.org/joda-convert/"/>
<item name="Money" href="https://www.joda.org/joda-money/"/>
<item name="Time" href="https://www.joda.org/joda-time/"/>
</menu>

<menu name="Reports" ref="reports"/>
Expand Down

0 comments on commit bb1fd39

Please sign in to comment.