[Git][java-team/libcommons-validator-java][upstream] New upstream version 1.7

sun min (@sunmin) gitlab at salsa.debian.org
Tue Jan 31 05:43:25 GMT 2023



sun min pushed to branch upstream at Debian Java Maintainers / libcommons-validator-java


Commits:
0c7c48d7 by sun min at 2023-01-30T19:17:42+08:00
New upstream version 1.7
- - - - -


5 changed files:

- − .github/dependabot.yml
- − .github/workflows/maven.yml
- − .gitignore
- − .travis.yml
- − PROPOSAL.html


Changes:

=====================================
.github/dependabot.yml deleted
=====================================
@@ -1,25 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-version: 2
-updates:
-  - package-ecosystem: "maven"
-    directory: "/"
-    schedule:
-      interval: "daily"
-  - package-ecosystem: "github-actions"
-    directory: "/"
-    schedule:
-      interval: "daily"


=====================================
.github/workflows/maven.yml deleted
=====================================
@@ -1,41 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-name: Java CI
-
-on: [push]
-
-jobs:
-  build:
-
-    runs-on: ubuntu-latest
-    continue-on-error: ${{ matrix.experimental }}
-    strategy:
-      matrix:
-        java: [ 7, 8, 11, 14 ]
-        experimental: [false]
-        include:
-          - java: 15-ea
-            experimental: true        
-        
-    steps:
-    - uses: actions/checkout at v2.3.1
-    - name: Set up JDK ${{ matrix.java }}
-      uses: actions/setup-java at v1.4.0
-      with:
-        java-version: ${{ matrix.java }}
-    - name: Build with Maven
-      run: mvn --batch-mode apache-rat:check javadoc:javadoc -Ddoclint=all package --file pom.xml
-#      run: mvn --batch-mode apache-rat:check package --file pom.xml


=====================================
.gitignore deleted
=====================================
@@ -1,6 +0,0 @@
-/target/
-/.settings/
-/.classpath
-/.project
-/site-content/
-/.vscode/


=====================================
.travis.yml deleted
=====================================
@@ -1,31 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-language: java
-dist: trusty
-cache:
-  directories:
-    - $HOME/.m2
-matrix:
-  include:
-    - jdk: openjdk7
-    - jdk: openjdk8
-    - jdk: openjdk11
-    - os: linux-ppc64le
-      jdk: openjdk8
-script:
-  - mvn clean test
-after_success:
-  - mvn clean cobertura:cobertura coveralls:report


=====================================
PROPOSAL.html deleted
=====================================
@@ -1,112 +0,0 @@
-<!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied..
- See the License for the specific language governing permissions and
- limitations under the License.
--->
-<html>
-<head>
-<title>Proposal for Validator Library Package</title>
-</head>
-<body bgcolor="white">
-
-<div align="center">
-<h1>Proposal for <em>Validator</em> Package</h1>
-</div>
-
-<h3>(0) Rationale</h3>
-
-<p>There is a need for the validation of JavaBeans to validate 
-user input from forms and validate business rules.  There is also a 
-need to define different validation rules and error messages based on 
-the user's locale.
-</p>
-
-<p>The Validator package will provide the capability to configure 
-validators (validation methods) with different method signatures.  
-So the basic framework can have an interface built on it to deal 
-with validations on web layers, ejb layers, etc.
-</p>
-
-<h3>(1) Scope of the Package</h3>
-
-<p>The package shall create and maintain a package that provides 
-basic validation functionality.
-</p>
-
-<p>
-The package should :
-<ul>
-<li>Provide in an easy way to define validations for fields</li>
-<li>Provide internationalization support for validation rules and error messages.</li>
-<li>Provide an easy way to define validators</li>
-<li>Provide a way to store information in a validator definition so JavaScript client 
-    side validation can be auto-generated matching the server side validation.</li>
-</ul>
-</p>
-
-<p>
-Non-goals:
-<ul>
-<li>This package does not auto-generate JavaScript client side code.</li>
-</ul>
-</p>
-
-<h3>(1.5) Interaction With Other Packages</h3>
-
-<p><em>Validator</em> relies on:
-</p>
-
-<ul>
-  <li>Jakarta Regexp</li>
-</ul>
-
-<h3>(2) Required Jakarta-Commons Resources</h3>
-
-<ul>
-  <li>Commons BeanUtils</li>
-  <li>Commons Collections</li>
-  <li>Commons Digester</li>
-</ul>
-
-<ul>
-<li>CVS Repository - New directory <code>validator</code> in the 
-<code>jakarta-commons</code> CVS repository.</li>
-
-<li>Initial Committers - The list is provided below. </li>
-
-<li>Mailing List - Discussions will take place on the general
-<em>dev at commons.apache.org</em> mailing list. To help list
-subscribers identify messages of interest, it is suggested that the
-message subject of messages about this component be prefixed with
-[Validator].</li>
-
-<li>Bugzilla - New component "Validator" under the "Commons" product
-category, with appropriate version identifiers as needed.</li>
-
-<li>Jyve FAQ - New category "commons-validator" (when available).</li>
-</ul>
-
-
-<h3>(4) Initial Committers</h3>
-
-<p>The initial committers on the Validator component shall be:</p>
-
-<ul>
-   <li><a href="mailto:dwinterfeldt at apache.org">David Winterfeldt</a></li>
-</ul>
-
-<br><br>
-
-</body>
-</html>



View it on GitLab: https://salsa.debian.org/java-team/libcommons-validator-java/-/commit/0c7c48d7707eaa7d98ea52acf3bf144a8a8551f0

-- 
View it on GitLab: https://salsa.debian.org/java-team/libcommons-validator-java/-/commit/0c7c48d7707eaa7d98ea52acf3bf144a8a8551f0
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20230131/0aea3502/attachment.htm>


More information about the pkg-java-commits mailing list