Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Andras-Csanyi committed May 24, 2024
1 parent 3cf52f2 commit 3818fe1
Show file tree
Hide file tree
Showing 68 changed files with 74 additions and 56 deletions.
16 changes: 16 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[bumpversion]
current_version = 0.0.0
commit = True
message = Update version {current_version} -> {new_version}

[bumpversion:file:README.md]
search = {current_version}
replace = {new_version}

[bumpversion:file:pom.xml]
search = {current_version}
replace = {new_version}

[bumpversion:file:version.txt]
search = {current_version}
replace = {new_version}
File renamed without changes.
File renamed without changes.
File renamed without changes.
49 changes: 29 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
# Compiled class file
*.class
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

# Log file
*.log
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

# BlueJ files
*.ctxt
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

# Mobile Tools for Java (J2ME)
.mtj.tmp/
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
### VS Code ###
.vscode/
Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
24 changes: 24 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"debug": true,
"tagFormat": "${version}",
"branches": [ "main" ],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "bump2version --verbose --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch",
}
],
[
"@semantic-release/git",
{
"assets" : [ "CHANGELOG.md" ],
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes} [skip ci]"
}
],
"@semantic-release/github"
]
}
File renamed without changes.
File renamed without changes.
Empty file added CHANGELOG.md
Empty file.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# Server
Spring GraphQL backend
0.0.0
33 changes: 0 additions & 33 deletions encyclopedia-galactica/.gitignore

This file was deleted.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion encyclopedia-galactica/pom.xml → pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.andrascsanyi</groupId>
<artifactId>encyclopedia-galactica</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.0-SNAPSHOT</version>
<name>encyclopedia-galactica</name>
<description>encyclopedia-galactica</description>
<properties>
Expand Down
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.0

0 comments on commit 3818fe1

Please sign in to comment.