Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions javadoc-theme/assertj-theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
:root {
/* body, block and code fonts */
--body-font-family: Verdana, Geneva, sans-serif;
--block-font-family: Verdana, Geneva, serif;
/* Text colors for body and block elements */
--body-text-color: #000000;
--block-text-color: #000000;
/* Background colors for various structural elements */
--body-background-color: #edd9a6;
--section-background-color: #e9d195;
--detail-background-color: #edd9a6;
/* Colors for navigation bar and table captions */
--navbar-background-color: #232323;
--navbar-text-color: #edd9a6;
/* Background color for subnavigation and various headers */
--subnav-background-color: #e5c880;
/* Background and text colors for selected tabs and navigation items */
--selected-background-color: #e5c880;
--selected-text-color: #000000;
--selected-link-color: #861203;
/* Background colors for generated tables */
--even-row-color: #edd9a6;
--odd-row-color: #e7ce8e;
/* Text color for page title */
--title-color: #000000;
/* Text colors for links */
--link-color: #861203;
--link-color-active: #641003;
/* Border colors for structural elements and user defined tables */
--border-color: #e5c880;
/* Search input colors */
--search-input-background-color: #edd9a6;
}
108 changes: 108 additions & 0 deletions javadoc-theme/hljs-theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/*

Railscasts-like style (c) Visoft, Inc. (Damien White)

*/

.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #232323;
color: #e6e1dc;
/* added by us */
border-radius:8px;
}

.hljs-comment,
.hljs-quote {
color: #bc9458;
font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag {
color: #c26230;
}

.hljs-string,
.hljs-number,
.hljs-regexp,
.hljs-variable,
.hljs-template-variable {
color: #a5c261;
}

.hljs-subst {
color: #519f50;
}

.hljs-tag,
.hljs-name {
color: #e8bf6a;
}

.hljs-type {
color: #ffc66d;
}


.hljs-symbol,
.hljs-bullet,
.hljs-built_in,
.hljs-builtin-name,
.hljs-attr,
.hljs-link {
color: #6d9cbe;
}

.hljs-params {
color: #d0d0ff;
}

.hljs-attribute {
color: #cda869;
}

.hljs-meta {
color: #9b859d;
}

.hljs-title,
.hljs-section {
color: #ffc66d;
}

.hljs-addition {
background-color: #144212;
color: #e6e1dc;
display: inline-block;
width: 100%;
}

.hljs-deletion {
background-color: #600;
color: #e6e1dc;
display: inline-block;
width: 100%;
}

.hljs-selector-class {
color: #9b703f;
}

.hljs-selector-id {
color: #8b98ab;
}

.hljs-emphasis {
font-style: italic;
}

.hljs-strong {
font-weight: bold;
}

.hljs-link {
text-decoration: underline;
}
65 changes: 3 additions & 62 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

<parent>
<groupId>org.assertj</groupId>
<artifactId>assertj-parent-pom</artifactId>
<version>2.2.18</version>
<artifactId>assertj-parent</artifactId>
<version>3.27.6</version>
</parent>

<artifactId>assertj-vavr</artifactId>
Expand All @@ -16,13 +16,6 @@
<description>Rich and fluent assertions for testing Vavr tools</description>
<inceptionYear>2017</inceptionYear>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<scm>
<developerConnection>scm:git:[email protected]:assertj/assertj-vavr.git</developerConnection>
<connection>scm:git:[email protected]:assertj/assertj-vavr.git</connection>
Expand Down Expand Up @@ -68,40 +61,11 @@
<url>https://github.com/assertj/assertj-vavr/issues</url>
</issueManagement>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.26.3</version>
<version>3.27.6</version>
</dependency>
<dependency>
<groupId>io.vavr</groupId>
Expand Down Expand Up @@ -132,12 +96,6 @@
</dependency>
</dependencies>

<properties>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>

<build>
<plugins>
<plugin>
Expand All @@ -156,23 +114,6 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<properties>
<!-- Values to be substituted in template -->
<currentYear>2024</currentYear>
</properties>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractLazyAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractMapAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractSeqAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractSetAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractTryAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/AbstractVavrAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/EitherAssert.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/assertj/vavr/api/EitherShouldBeLeft.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* Copyright 2017-2024 the original author or authors.
* Copyright 2017-2025 the original author or authors.
*/
package org.assertj.vavr.api;

Expand Down
Loading