Skip to content

Commit

Permalink
feat : XssFilter String Extension ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
- XssFilter String Extension ์ถ”๊ฐ€.
- ๊ด€๋ จ ํ…Œ์ŠคํŠธ ์ฝ”๋“œ ์ถ”๊ฐ€.
  • Loading branch information
devxbTest committed Feb 28, 2023
1 parent c3bf05e commit d8d1740
Show file tree
Hide file tree
Showing 38 changed files with 794 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#Tue Feb 28 14:45:48 KST 2023
gradle.version=7.4
Binary file not shown.
Binary file added xss-extension-string/.gradle/file-system.probe
Binary file not shown.
Empty file.
3 changes: 3 additions & 0 deletions xss-extension-string/.idea/.gitignore

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

6 changes: 6 additions & 0 deletions xss-extension-string/.idea/compiler.xml

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

16 changes: 16 additions & 0 deletions xss-extension-string/.idea/gradle.xml

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

25 changes: 25 additions & 0 deletions xss-extension-string/.idea/jarRepositories.xml

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

6 changes: 6 additions & 0 deletions xss-extension-string/.idea/jpa-buddy.xml

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

10 changes: 10 additions & 0 deletions xss-extension-string/.idea/misc.xml

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

Empty file.
124 changes: 124 additions & 0 deletions xss-extension-string/.idea/uiDesigner.xml

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

6 changes: 6 additions & 0 deletions xss-extension-string/.idea/vcs.xml

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

54 changes: 54 additions & 0 deletions xss-extension-string/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import org.springframework.boot.gradle.plugin.SpringBootPlugin

plugins {
id 'org.springframework.boot' version '2.7.1' apply false
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
id 'maven-publish'
}

group = 'com.github.xss-stage'
version '1.1'

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
mavenCentral()
maven {url 'https://jitpack.io'}
}

dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}

dependencies {
implementation 'com.github.xss-stage:xss-core:1.1'

implementation 'com.navercorp.lucy:lucy-xss:1.6.3' // License Apache 2.0

implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}

test {
useJUnitPlatform()
}

publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}

wrapper {
gradleVersion = "7.3.3"
distributionType = Wrapper.DistributionType.ALL
}
5 changes: 5 additions & 0 deletions xss-extension-string/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit d8d1740

Please sign in to comment.