• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
2025_PROJECT / mjgo_git star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjgo_gitpom.xml
Download as .zip file
File name
Commit message
Commit date
DATABASE
first commit
2025-12-15
src/main
1. 이벤트, 포인트 관련 콘텐츠 주석처리 2. 이용약관 2026버전으로 수정
03-26
.codetogether.ignore
first commit
2025-12-15
.gitignore
first commit
2025-12-15
pom.xml
first commit
2025-12-15
hehihoho3@gmail.com 2025-12-15 71240d8 first commit UNIX
Raw Open in browser Change history
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>mjgo</artifactId> <packaging>war</packaging> <version>1.0.0</version> <name>mjgo</name> <url>http://www.egovframe.go.kr</url> <!-- <profiles> <profile> <id>local</id> <activation> <activeByDefault>true</activeByDefault> activeByDefault 기본 </activation> <properties> resource 필터 사용시 개발자 PC에 적용되는 필터 properties 의 폴더 위치 <env>local</env> </properties> </profile> <profile> <id>dev</id> <properties> resource 필터 사용시 개발자 PC에 적용되는 필터 properties 의 폴더 위치 <env>dev</env> </properties> </profile> <profile> <id>real</id> <properties> resource 필터 사용시 개발자 PC에 적용되는 필터 properties 의 폴더 위치 <env>real</env> </properties> </profile> </profiles> --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <spring.maven.artifact.version>4.3.22.RELEASE</spring.maven.artifact.version> <egovframework.rte.version>3.9.0</egovframework.rte.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <repositories> <repository> <id>maven-public</id> <url>http://nexus.iten.co.kr:9999/repository/maven-public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.fdl.security</artifactId> <version>${egovframework.rte.version}</version> </dependency> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.fdl.excel</artifactId> <version>${egovframework.rte.version}</version> </dependency> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.ptl.mvc</artifactId> <version>${egovframework.rte.version}</version> </dependency> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.fdl.idgnr</artifactId> <version>${egovframework.rte.version}</version> <!--<version>4.2.0</version>--> </dependency> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.fdl.property</artifactId> <version>${egovframework.rte.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> <version>2.5</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency> <!-- https://mvnrepository.com/artifact/cglib/cglib --> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr</artifactId> <version>3.5</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.8.1</version> </dependency> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> <version>2.0.8</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.49</version> </dependency> <!-- oracle 10g driver --> <!-- <dependency> <groupId>ojdbc</groupId> <artifactId>ojdbc</artifactId> <version>14</version> </dependency> --> <!-- altibase driver --> <!-- <dependency> <groupId>altibase</groupId> <artifactId>altibase-jdbc-driver</artifactId> <version>5.1.3.18</version> </dependency> --> <!-- tibero driver --> <!-- <dependency> <groupId>com.tmax.tibero</groupId> <artifactId>tibero-jdbc</artifactId> <version>3.0</version> </dependency> --> <!-- cubrid driver --> <!-- <dependency> <groupId>cubrid</groupId> <artifactId>cubrid-jdbc</artifactId> <version>8.4</version> </dependency> --> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.3</version> </dependency> <!-- Cross-Site Scripting --> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>53.1</version> </dependency> <!-- quartz --> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz-weblogic</artifactId> <version>2.1.7</version> </dependency> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz-jboss</artifactId> <version>2.1.7</version> </dependency> <!-- 공통 --> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-spring</artifactId> <version>2.5.0</version> </dependency> <!-- JDBC TEMPLATE --> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-provider-jdbc-template</artifactId> <version>2.5.0</version> </dependency> <!-- user config add --> <!-- json 추가 --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.1</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.2</version> </dependency> <!-- site mesh --> <dependency> <groupId>opensymphony</groupId> <artifactId>sitemesh</artifactId> <version>2.4.2</version> </dependency> <!--// site mesh --> <!-- log4j --> <dependency> <groupId>org.lazyluke</groupId> <artifactId>log4jdbc-remix</artifactId> <version>0.2.7</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.20.0</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.20.0</version> </dependency> <!-- ckeditor --> <dependency> <groupId>com.ckeditor</groupId> <artifactId>ckeditor-java-core</artifactId> <version>3.5.3</version> </dependency> <!-- json-simple --> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>nl.captcha</groupId> <artifactId>simplecaptcha</artifactId> <version>1.2.1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/simplecaptcha-1.2.1_exp.jar</systemPath> </dependency> <!-- sci 평가 siren24. 본인인증 --> <dependency> <groupId>sciSecuPCC</groupId> <artifactId>sciSecuPCC</artifactId> <version>2</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/sciSecuPCC.jar</systemPath> </dependency> <dependency> <groupId>sciSecuPIN_v3</groupId> <artifactId>sciSecuPIN_v3</artifactId> <version>2</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/sciSecuIPIN_v3.jar</systemPath> </dependency> <!-- KG모빌리언스 결제모듈 --> <dependency> <groupId>McashCipher</groupId> <artifactId>McashCipher</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/McashCipher.jar</systemPath> </dependency> <!-- NiceID 본인인증 --> <dependency> <groupId>NiceID</groupId> <artifactId>NiceID</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/NiceID.jar</systemPath> </dependency> <!-- 디아모 모듈 --> <dependency> <groupId>damo</groupId> <artifactId>damo</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/scpdb.jar</systemPath> </dependency> <!-- ARS 전화인증 --> <dependency> <groupId>arsAuto</groupId> <artifactId>arsAuto</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/hjhseed.jar</systemPath> </dependency> <dependency> <groupId>hjhauth</groupId> <artifactId>hjhauth_1.8</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/hjhauth.jar</systemPath> </dependency> <!-- Jsoup HTML 파서 --> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.11.3</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/jsoup-1.11.3.jar</systemPath> </dependency> <!-- Email --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-email</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>egovframework.com.ems</groupId> <artifactId>sndng-mail</artifactId> <version>1.0</version> </dependency> <!-- eGov 호환성 인증을 위한 패키지명 변경 작업하고, was 에러가 발생하여 추가함. --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator-annotation-processor</artifactId> <version>4.1.0.Final</version> </dependency> <!-- Solr --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5</version> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-solrj</artifactId> <version>5.3.1</version> </dependency> <!-- Java thumbnailator --> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>[0.4, 0.5)</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.16</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.16</version> </dependency> <!-- <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.22</version> <scope>provided</scope> </dependency> --> <!-- 자동완성기능 gson 사용 --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.1</version> </dependency> <!-- ITN 홈페이지 메일전송(네이버 SMTP 사용) --> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>30.0-jre</version> </dependency> <!-- html parse --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.0</version> </dependency> <!-- kmc 본인인증 --> <!-- <dependency> <groupId>kmc</groupId> <artifactId>ICERTSecu_JDK18</artifactId> <version>1</version> <scope>system</scope> <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ICERTSecu_JDK18.jar</systemPath> </dependency> --> <!-- kmc 본인인증 ver 2 암호화 모듈 추가 버전 --> <dependency> <groupId>kmc</groupId> <artifactId>ICERTSecu</artifactId> <version>JDK18_v2</version> </dependency> <!-- crpyto --> <dependency> <groupId>egovframework.rte</groupId> <artifactId>egovframework.rte.fdl.crypto</artifactId> <version>${egovframework.rte.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.mashape.unirest/unirest-java --> <dependency> <groupId>com.mashape.unirest</groupId> <artifactId>unirest-java</artifactId> <version>1.4.9</version> </dependency> <dependency> <groupId>com.thetransactioncompany</groupId> <artifactId>cors-filter</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox --> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>2.0.27</version> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox-tools</artifactId> <version>2.0.27</version> </dependency> <dependency> <groupId>com.github.jai-imageio</groupId> <artifactId>jai-imageio-core</artifactId> <version>1.3.1</version> </dependency> <!-- Komoran 형태소 분석기 --> <dependency> <groupId>com.github.shin285</groupId> <artifactId>KOMORAN</artifactId> <version>3.3.4</version> </dependency> <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> <scope>provided</scope> </dependency> <!-- valkey --> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session</artifactId> <version>1.3.1.RELEASE</version> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.8.11.RELEASE</version> </dependency> <!-- valkey --> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <!-- <resource> <directory>src/main/resources-${env}</directory> </resource> --> </resources> <defaultGoal>install</defaultGoal> <directory>${basedir}/target</directory> <finalName>mjgo</finalName> <pluginManagement> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <port>80</port> <path>/</path> <systemProperties> <JAVA_OPTS>-Xms256m -Xmx768m -XX:MaxPermSize=256m</JAVA_OPTS> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <version>3.8.1</version> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>hibernate3-maven-plugin</artifactId> <version>2.1</version> <configuration> <components> <component> <name>hbm2ddl</name> <implementation>annotationconfiguration</implementation> </component> </components> </configuration> <dependencies> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.2</version> </dependency> </dependencies> </plugin> <!-- EMMA --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId> <version>1.0-alpha-3</version> </plugin> <!-- PMD manven plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.1</version> </plugin> </plugins> </pluginManagement> <plugins> <!-- EMMA --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> <forkMode>once</forkMode> <reportFormat>xml</reportFormat> <excludes> <exclude>**/Abstract*.java</exclude> <exclude>**/*Suite.java</exclude> </excludes> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId> <inherited>true</inherited> </plugin> <!-- JavaDoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> </plugin> </plugins> </build> <reporting> <outputDirectory>${basedir}/target/site</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <reportSets> <reportSet> <id>sunlink</id> <reports> <report>javadoc</report> </reports> <inherited>true</inherited> <configuration> <links> <link>http://docs.oracle.com/javase/6/docs/api/</link> </links> </configuration> </reportSet> </reportSets> </plugin> <!-- JUnit Test Results & EMMA Coverage Reporting --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>emma-maven-plugin</artifactId> <inherited>true</inherited> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>surefire-report-maven-plugin</artifactId> <inherited>true</inherited> <reportSets> <reportSet> <reports> <report>report-only</report> </reports> </reportSet> </reportSets> </plugin> <!-- Generating JavaDoc Report --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <minmemory>128m</minmemory> <maxmemory>512m</maxmemory> <encoding>${encoding}</encoding> <docencoding>${encoding}</docencoding> <charset>${encoding}</charset> </configuration> </plugin> <!-- Generating Java Source in HTML --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <configuration> <inputEncoding>${encoding}</inputEncoding> <outputEncoding>${encoding}</outputEncoding> <linkJavadoc>true</linkJavadoc> <javadocDir>apidocs</javadocDir> </configuration> </plugin> </plugins> </reporting> <groupId>mjgo</groupId> </project>

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up