Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: ./gradlew build -x test

- name: Build plugin
run: ./gradlew buildPlugin -PpluginVersion=${{ github.run_number }}
run: ./gradlew buildPlugin -PpluginVersion=0.3.2-${{ github.run_number }}

- name: Prepare Plugin Artifact
id: artifact
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {

plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })

pluginVerifier()
pluginVerifier(version = "1.383")
zipSigner()
testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Plugin.Java)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginGroup = org.domaframework.doma.intellij
pluginName = Doma Tools for IntelliJ
pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
pluginVersion = 0.3.1
pluginVersion = 0.3.2

pluginSinceBuild=231

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
import com.intellij.openapi.extensions.PluginId

const val PLUGIN_ID = "org.domaframework.doma.intellij"
const val PLUGIN_VERSION = "0.3.1"
const val PLUGIN_VERSION = "0.3.2"

open class PluginUtil {
companion object {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.1}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.2}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand All @@ -14,9 +14,9 @@
</appender>

<appender name="DOMATOOLS" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}.log</file>
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.2}.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}-%d{yyyy-MM-dd}.log</fileNamePattern>
<fileNamePattern>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.2}-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.1}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.2}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand All @@ -14,9 +14,9 @@
</appender>

<appender name="DOMATOOLS" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}.log</file>
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.2}.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}-%d{yyyy-MM-dd}.log</fileNamePattern>
<fileNamePattern>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.2}-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
Expand Down
Loading