목록Gradle (14)
준호씨의 블로그
java 공부용 프로젝트가 JUnit4를 사용하고 있었는데 JUnit5로 바꿨습니다. github.com/junho85/java-study/commit/b3f41fc3adffff5d751d2c5b50265d60f231bdf0 junit4 -> junit5 · junho85/java-study@b3f41fc Analytics cookies We use analytics cookies to understand how you use our websites so we can make them better, e.g. they're used to gather information about the pages you visit and how many clicks you need to accomplish a task...
간단히 프로젝트를 하나 만들어 봅니다. spring-boot-start-mail를 이용할 겁니다. 언어는 kotlin을 쓰고 빌드 툴은 gradle을 사용합니다. curl https://start.spring.io/starter.zip -d type=gradle-project -d language=kotlin -d bootVersion=2.2.0.RELEASE -d baseDir=mail -d groupId=kr.pe.junho85 -d artifactId=mail -d name=mail -d description=Demo%20project%20for%20Spring%20Boot -d packageName=kr.pe.junho85.mail -d packaging=jar -d javaVersion=1.8 ..
IntelliJ 에서 gradle 로 구성된 프로젝트를 열었는데 라이브러리나 소스파일 경로가 잡히지 않았다. gradle refresh 했는데 아래와 같은 오류가 보였다. Could not determine java version from '9.0.1' Preferences -> Build, Execution, Deployment -> Build Tools -> Gradle 에서 Gradle JVM 을 1.8 로 변경 해 주니 동작하였다. Java 9 을 제대로 인식하지 못하는 것 같다.
어느날 부터 IntelliJ 에서 Gradle Java 프로젝트를 생성하고 나면 기본 디렉토리들이 생성 되지 않았다. 아마 2018년 버전 부터 그렇게 된 것으로 추측 된다. 해결 방법은 Preferences (Cmd + ,)에 가서 "Create directories for empty content roots automatically" 를 선택 해 주면 된다. 참고 https://intellij-support.jetbrains.com/hc/en-us/community/posts/206154199-No-default-folders-created-in-new-gradle-project
osx installation brew install gradle 구 버전 설치 시 brew tap homebrew/versions brew search gradle brew install gradle@2.14 brew info gradle@2.14 /usr/local/Cellar/gradle@2.14/2.14.1 brew link --overwrite gradle@2.14 intelliJ /usr/local/opt/gradle/libexec 버전별 구분 하려면 /usr/local/Cellar/gradle/X.X/libexec 참고 https://gist.github.com/l1x/d8ba66343fceb927d691