Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: crysknife-io/crysknife
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2d8cba7c10c74bbd6c324c86e7677c1a1a14e685
Choose a base ref
..
head repository: crysknife-io/crysknife
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 34c3da45030d69997ad85600fa71b1b1fd098499
Choose a head ref
Showing 330 changed files with 14,101 additions and 2,530 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '32 16 * * 4'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java', 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
2 changes: 1 addition & 1 deletion annotations/pom.xml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
<artifactId>crysknife-annotations</artifactId>
<packaging>jar</packaging>

<name>crysknife-annotations</name>
<name>crysknife annotations</name>
<description>This artifact contains annotations for crysknife</description>
<url>https://github.com/treblereel</url>

32 changes: 32 additions & 0 deletions annotations/src/main/java/javax/ejb/Startup.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright (c) 2006, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary Licenses when the
* conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied:
* GNU General Public License, version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package javax.ejb;

import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.*;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.*;

/**
* Mark a singleton bean for eager initialization during the application startup sequence.
*
* @since EJB 3.1
*/

@Target(TYPE)
@Retention(RUNTIME)
public @interface Startup {
}

72 changes: 54 additions & 18 deletions bom/pom.xml
Original file line number Diff line number Diff line change
@@ -64,64 +64,100 @@
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<groupId>io.crysknife.ui</groupId>
<artifactId>elemental2-generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.crysknife</groupId>
<groupId>io.crysknife.ui</groupId>
<artifactId>gwt-dom-generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>databinding-api</artifactId>
<groupId>io.crysknife.ui.databinding</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>databinding-generator</artifactId>
<groupId>io.crysknife.ui.databinding</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>mutationobserver-api</artifactId>
<groupId>io.crysknife.ui.mutationobserver</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>mutationobserver-generator</artifactId>
<groupId>io.crysknife.ui.mutationobserver</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>navigation-api</artifactId>
<groupId>io.crysknife.ui.navigation</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>navigation-generator</artifactId>
<groupId>io.crysknife.ui.navigation</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>templates-api</artifactId>
<groupId>io.crysknife.ui.templates</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife</groupId>
<artifactId>templates-generator</artifactId>
<groupId>io.crysknife.ui.templates</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife.ui.translation</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife.ui.translation</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife.ui.validation</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.crysknife.ui.validation</groupId>
<artifactId>generator</artifactId>
<version>${project.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

<distributionManagement>
<snapshotRepository>
<id>treblereel</id>
<url>https://repo.treblereel.org/snapshots</url>
</snapshotRepository>
<repository>
<id>treblereel</id>
<url>https://repo.treblereel.org/releases</url>
</repository>
</distributionManagement>

</project>
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
<artifactId>crysknife-core</artifactId>
<packaging>jar</packaging>

<name>crysknife-core</name>
<name>crysknife core</name>
<description>This artifact contains core components for crysknife</description>
<url>https://github.com/treblereel</url>

Loading