Skip to content

Commit c9d30db

Browse files
dbulahovstbischof
authored andcommitted
create olap modules
1 parent b8e573e commit c9d30db

10 files changed

+197
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Eclipse-Dash IP-Check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
10+
issue_comment:
11+
types: [created]
12+
13+
jobs:
14+
call-license-check:
15+
permissions:
16+
pull-requests: write
17+
uses: eclipse-daanse/.github/.github/workflows/reuse_all_check_eclipse_ip.yml@main
18+
secrets:
19+
GITLAB_API_TOKEN: ${{ secrets.GITLAB_API_TOKEN }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Editor Config format check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
10+
11+
jobs:
12+
validate:
13+
permissions:
14+
statuses: write
15+
contents: read
16+
packages: read
17+
uses: eclipse-daanse/.github/.github/workflows/reuse_all_check_editor_config_format.yml@main
18+
secrets:
19+
envGH: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: License Header Check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
10+
11+
jobs:
12+
validate:
13+
uses: eclipse-daanse/.github/.github/workflows/reuse_all_check_license_header.yml@main
14+
secrets:
15+
envGH: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: First Interaction
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
pull_request_target:
8+
types:
9+
- opened
10+
11+
jobs:
12+
trigger-workflow:
13+
uses: eclipse-daanse/.github/.github/workflows/reuse_all_first_interaction.yml@main
14+
secrets:
15+
envGH: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Close stale issues and PRs
2+
on:
3+
schedule:
4+
- cron: '30 1 * * *'
5+
6+
jobs:
7+
stale:
8+
uses: eclipse-daanse/.github/.github/workflows/reuse_all_stale_bot.yml@main
9+
secrets:
10+
envGH: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Java Build, Test
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
10+
11+
jobs:
12+
build:
13+
uses: eclipse-daanse/.github/.github/workflows/reuse_java_build_test.yml@main
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: JavaDoc Check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
pull_request:
8+
branches:
9+
- 'main'
10+
11+
jobs:
12+
build:
13+
uses: eclipse-daanse/.github/.github/workflows/reuse_java_check_javadoc.yml@main

.github/workflows/java_deploy.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Deploy Maven
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
8+
jobs:
9+
publish:
10+
uses: eclipse-daanse/.github/.github/workflows/reuse_java_deploy.yml@main
11+
secrets: inherit

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/.idea
2+
*.iml
3+
target
4+
*~
5+
*.log
6+
.settings
7+
.classpath
8+
.project
9+
.gradle
10+
deploy_local.sh
11+
deploy.sh
12+
bin
13+
build
14+
nbproject
15+
generated
16+
17+
# ANTLR
18+
.antlr/
19+
20+
.DS_Store
21+
22+
# local env files
23+
.env.local
24+
.env.*.local
25+
26+
# Log files
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
pnpm-debug.log*
31+
32+
# Editor directories and files
33+
.idea
34+
.vscode
35+
*.suo
36+
*.ntvs*
37+
*.njsproj
38+
*.sln
39+
*.sw?
40+
.flattened-pom.xml

pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
/*********************************************************************
4+
* Copyright (c) 2024 Contributors to the Eclipse Foundation.
5+
*
6+
* This program and the accompanying materials are made
7+
* available under the terms of the Eclipse Public License 2.0
8+
* which is available at https://www.eclipse.org/legal/epl-2.0/
9+
*
10+
* SPDX-License-Identifier: EPL-2.0
11+
**********************************************************************/
12+
-->
13+
<project
14+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
15+
xmlns="http://maven.apache.org/POM/4.0.0"
16+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
17+
<modelVersion>4.0.0</modelVersion>
18+
19+
<parent>
20+
<groupId>org.eclipse.daanse</groupId>
21+
<artifactId>org.eclipse.daanse.pom.parent</artifactId>
22+
<version>0.0.3</version>
23+
</parent>
24+
<artifactId>org.eclipse.daanse.olap</artifactId>
25+
<version>${revision}</version>
26+
<packaging>pom</packaging>
27+
28+
<properties>
29+
<revision>0.0.1-SNAPSHOT</revision>
30+
<slf4j.version>2.0.9</slf4j.version>
31+
</properties>
32+
33+
<dependencies>
34+
<dependency>
35+
<groupId>org.slf4j</groupId>
36+
<artifactId>slf4j-api</artifactId>
37+
<version>${slf4j.version}</version>
38+
<scope>compile</scope>
39+
</dependency>
40+
</dependencies>
41+
42+
</project>

0 commit comments

Comments
 (0)