• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision2381 (tree)
Time2022-09-22 18:15:49
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/pjWeb/pom.xml (nonexistent)
+++ trunk/framework/pjWeb/pom.xml (revision 2381)
@@ -0,0 +1,156 @@
1+<?xml version="1.0" encoding="UTF-8"?>
2+<project xmlns="http://maven.apache.org/POM/4.0.0"
3+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+ <modelVersion>4.0.0</modelVersion>
6+
7+ <groupId>ThoughtBase</groupId>
8+ <artifactId>pjWeb</artifactId>
9+ <version>1.0.0</version>
10+ <packaging>war</packaging>
11+
12+ <properties>
13+ <maven.compiler.source>19</maven.compiler.source>
14+ <maven.compiler.target>19</maven.compiler.target>
15+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
17+ </properties>
18+
19+ <profiles>
20+
21+ </profiles>
22+
23+ <dependencyManagement>
24+ <dependencies>
25+ <dependency>
26+ <groupId>com.fasterxml.jackson.core</groupId>
27+ <artifactId>jackson-annotations</artifactId>
28+ <scope>runtime</scope>
29+ </dependency>
30+ </dependencies>
31+ </dependencyManagement>
32+
33+ <dependencies>
34+
35+ <dependency>
36+ <groupId>com.fasterxml.jackson.core</groupId>
37+ <artifactId>jackson-databind</artifactId>
38+ <version>2.13.4</version>
39+ <scope>compile</scope>
40+ </dependency>
41+ <dependency>
42+ <groupId>commons-net</groupId>
43+ <artifactId>commons-net</artifactId>
44+ <version>3.8.0</version>
45+ <scope>compile</scope>
46+ </dependency>
47+ <dependency>
48+ <groupId>jakarta.servlet.jsp.jstl</groupId>
49+ <artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
50+ <version>3.0.0</version>
51+ <scope>compile</scope>
52+ </dependency>
53+ <dependency>
54+ <groupId>org.glassfish.web</groupId>
55+ <artifactId>jakarta.servlet.jsp.jstl</artifactId>
56+ <version>3.0.0</version>
57+ <scope>compile</scope>
58+ </dependency>
59+ <dependency>
60+ <groupId>org.apache.logging.log4j</groupId>
61+ <artifactId>log4j-api</artifactId>
62+ <version>2.19.0</version>
63+ <scope>compile</scope>
64+ </dependency>
65+
66+ <dependency>
67+ <groupId>commons-io</groupId>
68+ <artifactId>commons-io</artifactId>
69+ <version>2.11.0</version>
70+ <scope>runtime</scope>
71+ </dependency>
72+ <dependency>
73+ <groupId>org.javassist</groupId>
74+ <artifactId>javassist</artifactId>
75+ <version>3.29.2-GA</version>
76+ <scope>runtime</scope>
77+ </dependency>
78+ <dependency>
79+ <groupId>org.apache.logging.log4j</groupId>
80+ <artifactId>log4j-core</artifactId>
81+ <version>2.19.0</version>
82+ <scope>runtime</scope>
83+ </dependency>
84+ <dependency>
85+ <groupId>org.apache.logging.log4j</groupId>
86+ <artifactId>log4j-web</artifactId>
87+ <version>2.19.0</version>
88+ <scope>runtime</scope>
89+ </dependency>
90+ <dependency>
91+ <groupId>org.apache.commons</groupId>
92+ <artifactId>commons-fileupload2</artifactId>
93+ <version>2.0-SNAPSHOT</version>
94+ <scope>runtime</scope>
95+ </dependency>
96+ <dependency>
97+ <groupId>org.hibernate.orm</groupId>
98+ <artifactId>hibernate-core</artifactId>
99+ <version>6.1.3.Final</version>
100+ <scope>runtime</scope>
101+ </dependency>
102+ <dependency>
103+ <groupId>org.postgresql</groupId>
104+ <artifactId>postgresql</artifactId>
105+ <version>42.5.0</version>
106+ <scope>runtime</scope>
107+ </dependency>
108+
109+ <dependency>
110+ <groupId>jakarta.servlet</groupId>
111+ <artifactId>jakarta.servlet-api</artifactId>
112+ <version>6.0.0</version>
113+ <scope>provided</scope>
114+ </dependency>
115+ <dependency>
116+ <groupId>jakarta.servlet.jsp</groupId>
117+ <artifactId>jakarta.servlet.jsp-api</artifactId>
118+ <version>3.1.0</version>
119+ <scope>provided</scope>
120+ </dependency>
121+
122+ <dependency>
123+ <groupId>junit</groupId>
124+ <artifactId>junit</artifactId>
125+ <version>4.13.2</version>
126+ <scope>test</scope>
127+ </dependency>
128+ </dependencies>
129+
130+ <build>
131+ <finalName>pjWeb</finalName>
132+ <plugins>
133+ <plugin>
134+ <groupId>org.apache.maven.plugins</groupId>
135+ <artifactId>maven-war-plugin</artifactId>
136+ <version>3.3.2</version>
137+ </plugin>
138+ </plugins>
139+ </build>
140+
141+ <!-- https://repository.apache.org/content/repositories/snapshots/org/apache/commons/commons-fileupload2/2.0-SNAPSHOT/ -->
142+ <repositories>
143+ <repository>
144+ <id>apache.snapshots</id>
145+ <name>Aapache Development Snapshot Repository</name>
146+ <url>https://repository.apache.org/content/repositories/snapshots/</url>
147+ <releases>
148+ <enabled>false</enabled>
149+ </releases>
150+ <snapshots>
151+ <enabled>true</enabled>
152+ </snapshots>
153+ </repository>
154+ </repositories>
155+
156+</project>