Skip to content

Commit

Permalink
Fix .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Mar 29, 2020
1 parent 093a6fb commit e461523
Showing 1 changed file with 29 additions and 14 deletions.
43 changes: 29 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ gradle.properties
jabref.xml
*.sonargraph

## !! IN CASE YOU UPDATE, PLEASE KEEP THE LINES AT THE END OF THE FILE !!


# Created by https://www.gitignore.io/api/gradle,java,jabref,intellij,eclipse,netbeans,windows,linux,macos,node,snapcraft
# Edit at https://www.gitignore.io/?templates=gradle,java,jabref,intellij,eclipse,netbeans,windows,linux,macos,node,snapcraft
Expand Down Expand Up @@ -370,8 +372,16 @@ typings/
# nuxt.js build output
.nuxt

# react / gatsby
public/
# rollup.js default build output

# Uncomment the public line if your project uses Gatsby
# https://nextjs.org/blog/next-9-1#public-directory-support
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
# public

# Storybook build outputs
.out
.storybook-out

# vuepress build output
.vuepress/dist
Expand All @@ -385,6 +395,9 @@ public/
# DynamoDB Local files
.dynamodb/

# Temporary folders
temp/

### Snapcraft ###
/parts/
/stage/
Expand Down Expand Up @@ -444,15 +457,17 @@ gradle-app.setting

# End of https://www.gitignore.io/api/gradle,java,jabref,intellij,eclipse,netbeans,windows,linux,macos,node,snapcraft

-# we really version .jar files - needs to be go after the www.gitignore.io-generated ones, because they ignore *.jar files
-!/lib/*.jar
-
-# do not distribute Oracle's JDBC driver
-lib/ojdbc.jar
-
-# do not ignore the source of the build
-!/buildSrc/src/
-!/buildSrc/src/main/groovy/org/jabref/build
-
-# do not ignore JabRef icons (they are ignored by the macos setting above)
-!src/main/java/org/jabref/gui/icon
## !! KEEP THESE LINES !!

# we really version .jar files - needs to be go after the www.gitignore.io-generated ones, because they ignore *.jar files
!/lib/*.jar

# do not distribute Oracle's JDBC driver
lib/ojdbc.jar

# do not ignore the source of the build
!/buildSrc/src/
!/buildSrc/src/main/groovy/org/jabref/build

# do not ignore JabRef icons (they are ignored by the macos setting above)
!src/main/java/org/jabref/gui/icon

0 comments on commit e461523

Please sign in to comment.