This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git


The following commit(s) were added to refs/heads/master by this push:
     new 7d989c5f Add package level Javadoc
7d989c5f is described below

commit 7d989c5f023fad0a6dc29fcefa06d9a915b9d27e
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 31 08:15:14 2023 -0500

    Add package level Javadoc
---
 .../commons/exec/environment/package-info.java     | 23 +++++++++++++++++++
 .../apache/commons/exec/launcher/package-info.java | 23 +++++++++++++++++++
 .../java/org/apache/commons/exec/package-info.java | 26 ++++++++++++++++++++++
 .../org/apache/commons/exec/util/package-info.java | 23 +++++++++++++++++++
 4 files changed, 95 insertions(+)

diff --git 
a/src/main/java/org/apache/commons/exec/environment/package-info.java 
b/src/main/java/org/apache/commons/exec/environment/package-info.java
new file mode 100644
index 00000000..eedea3b3
--- /dev/null
+++ b/src/main/java/org/apache/commons/exec/environment/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+/**
+ * <p>
+ * Queries the operating system environment.
+ * </p>
+ */
+package org.apache.commons.exec.environment;
diff --git a/src/main/java/org/apache/commons/exec/launcher/package-info.java 
b/src/main/java/org/apache/commons/exec/launcher/package-info.java
new file mode 100644
index 00000000..9df106e9
--- /dev/null
+++ b/src/main/java/org/apache/commons/exec/launcher/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+/**
+ * <p>
+ * Operating system dependent command launchers are abstracted by the 
interface {@link org.apache.commons.exec.launcher.CommandLauncher}.
+ * </p>
+ */
+package org.apache.commons.exec.launcher;
diff --git a/src/main/java/org/apache/commons/exec/package-info.java 
b/src/main/java/org/apache/commons/exec/package-info.java
new file mode 100644
index 00000000..74a954fd
--- /dev/null
+++ b/src/main/java/org/apache/commons/exec/package-info.java
@@ -0,0 +1,26 @@
+/*
+ * 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.
+ */
+
+/**
+ * <p>
+ * The main Apache Commons Exec package.
+ * </p>
+ * <p>
+ * The main classes are {@link org.apache.commons.exec.CommandLine} and {@link 
org.apache.commons.exec.DefaultExecutor}.
+ * </p>
+ */
+package org.apache.commons.exec;
diff --git a/src/main/java/org/apache/commons/exec/util/package-info.java 
b/src/main/java/org/apache/commons/exec/util/package-info.java
new file mode 100644
index 00000000..95192801
--- /dev/null
+++ b/src/main/java/org/apache/commons/exec/util/package-info.java
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ */
+
+/**
+ * <p>
+ * Gathers utilities.
+ * </p>
+ */
+package org.apache.commons.exec.util;

Reply via email to