Skip to content

Commit

Permalink
project init
Browse files Browse the repository at this point in the history
  • Loading branch information
jisungbin committed Oct 5, 2022
0 parents commit e5a4238
Show file tree
Hide file tree
Showing 10 changed files with 148 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
**/.idea/*
!/.idea/icon.png
!/.idea/vcs.xml
!/.idea/copyright
!/.idea/codeStyleSettings.xml
!/.idea/codeStyles
!/.idea/dictionaries
*.iml
.gradle
build
6 changes: 6 additions & 0 deletions .idea/copyright/MIT.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 SungbinLand, Ji Sungbin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# composer-function-reference-diagnostic-suppressor

`COMPOSABLE_FUNCTION_REFERENCE` diagnostic suppression Kotlin compiler plugin
45 changes: 45 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Developed by 2022 SungbinLand, Ji Sungbin
*
* Licensed under the MIT.
* Please see full license: https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/blob/main/LICENSE
*/

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.7.20"
`java-gradle-plugin`
id("com.vanniktech.maven.publish") version "0.22.0"
}

gradlePlugin {
plugins {
create("composableReferenceSuppressor") {
id = "land.sungbin.composable.reference.suppressor"
implementationClass = "land.sungbin.composable.reference.suppressor.ComposableReferenceSuppressorPlugin"
}
}
}

repositories {
mavenCentral()
}

dependencies {
compileOnly(gradleApi())
implementation("org.jetbrains.compose.compiler:compiler:1.1.1")
}

tasks.test {
useJUnitPlatform()
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}

tasks.withType<JavaCompile> {
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
}
33 changes: 33 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Developed by 2022 SungbinLand, Ji Sungbin
#
# Licensed under the MIT.
# Please see full license: https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/blob/main/LICENSE
#

kotlin.code.style=official

SONATYPE_HOST=S01
RELEASE_SIGNING_ENABLED=true

GROUP=land.sungbin
POM_ARTIFACT_ID=composable.reference.suppressor
VERSION_NAME=0.1.0-preview

POM_NAME=composable-function-reference-diagnostic-suppressor
POM_DESCRIPTION=COMPOSABLE_FUNCTION_REFERENCE diagnostic suppression Kotlin compiler plugin
POM_INCEPTION_YEAR=2022
POM_URL=https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor

POM_LICENSE_NAME=MIT License
POM_LICENSE_URL=https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/blob/main/README.md
POM_LICENSE_DIST=repo

POM_SCM_URL=https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/tree/main
POM_SCM_CONNECTION=scm:git:github.com/duckie-team/composable-function-reference-diagnostic-suppressor.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://github.com/duckie-team/composable-function-reference-diagnostic-suppressor.git

POM_DEVELOPER_ID=jisungbin
POM_DEVELOPER_NAME=Ji Sungbin
POM_DEVELOPER_URL=https://sungb.in
POM_DEVELOPER_EMAIL=ji@sungb.in
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
8 changes: 8 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* Developed by 2022 SungbinLand, Ji Sungbin
*
* Licensed under the MIT.
* Please see full license: https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/blob/main/LICENSE
*/

rootProject.name = "composable-reference-suppressor"
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
* Developed by 2022 SungbinLand, Ji Sungbin
*
* Licensed under the MIT.
* Please see full license: https://github.com/duckie-team/composable-function-reference-diagnostic-suppressor/blob/main/LICENSE
*/

package land.sungbin.composable.reference.suppressor

class ComposableReferenceSuppressorPlugin

0 comments on commit e5a4238

Please sign in to comment.