As you can see in this pom, I am pulling some external dependencies.
I also have in the root of myproject this LICENSE file:
BSD 3-Clause License
Copyright (c) 2024, John Smith
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Running the maven command, I would see:
(just copy pasting a small portion)
Lists of 63 third-party dependencies.
(MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.0.13 - http://www.slf4j.org)
(Apache License, Version 2.0) Spring AOP (org.springframework:spring-aop:6.1.6 - https://github.com/spring-projects/spring-framework)
Hello,
If not anything else, just wanted to say thanks for this project. It is easy to use, simple, and helpful.
Just wanted to reach out with an issue observed.
I have a project, called myproject.
the project myproject is pulling some dependencies via maven. The dependencies have licenses. the project myproject is also has a license on its own.
I was hoping to see
the licenses of the dependent projects. the license of myproject, the project itself.
However, I am only seeing the dependent licenses not the license of project myproject itself.
As you can see in this pom, I am pulling some external dependencies.
I also have in the root of myproject this LICENSE file:
Running the maven command, I would see: (just copy pasting a small portion)
but not the license of my own project.
Could you please help me on this issue?
Thank you in advanced